1
0
Fork 0
mirror of https://github.com/fmap/muflax65ngodyewp.onion synced 2024-06-18 09:16:48 +02:00

added title bar, minor changes

This commit is contained in:
muflax 2011-09-05 18:19:21 +02:00
parent 3aa08e0a3c
commit 61f5a31a67
5 changed files with 40 additions and 14 deletions

View file

@ -3,14 +3,24 @@ title: Changelog
non_cognitive: true
---
> Well, this site's existed for long enough now that there must be people coming
> back and wondering "Has anything new gone up?". In an ideal world, they'd all
> be forced to read my pages over and over again until they'd got 'em memorised
> and could spot the places where I've turned a comma into a semicolon… but
> until then, I'll let people bookmark this page and visit every six months to
> see how little progress there's been.
>
> -- jbr's [changelog][jbr changelog]
All major changes on the site
=============================
{:#changelog}
- 2011/09/04: Converted whole site to [nanoc][]. Most of the content got
re-organized, but not widely changed. The design is reasonably the same, with
some minor tweaks. The navigation bar is now at the bottom to deal with some
footnote issues.
re-organized, but not widely changed. A few things have disappeared, but will
probably come back in a better form later. The design is reasonably the same,
with some minor tweaks. The navigation bar is now at the bottom to deal with
some footnote issues.
Every page has an [Epistemic State][] now. This is an important step to
convert this into proper long-term content. Sites are also dated now, so that
@ -23,7 +33,7 @@ All major changes on the site
I do plan articles on the Great Filter and languages (use and learning), but
dunno how long this'll take. For now, this is mostly a setup to make it really
easy for me to write more stuff und release faster. I have a couple of drafts
easy for me to write more stuff and release faster. I have a couple of drafts
lying around I might revive, particularly a comparison of the [Theravada][]
path model of enlightenment with the Matrix movie.

View file

@ -4,8 +4,6 @@ short_title: muflax
is_category: true
---
Lies and Wonderland
===================
![logo](logo.jpg)
Yet another hypergraphic information whore's site.

View file

@ -38,6 +38,7 @@ is_hidden: true
[Price Purpose]: http://www.robertmprice.mindvendor.com/zara/april__2007.htm
[Fyfe Purpose]: http://atheistethicist.blogspot.com/2009/07/purpose-to-life-choosing-purpose.html
[Rational Addiction]: http://www.xtranormal.com/watch/7873033/
[jbr changelog]: http://www.xibalba.demon.co.uk/jbr/log/
<!-- Wikipedia articles (and similar) -->
[DXM]: http://en.wikipedia.org/wiki/DXM

View file

@ -9,6 +9,7 @@ body {
}
div.main {
margin-top: 3.5em;
margin-bottom: 3.5em;
margin-left: auto;
margin-right: auto;
@ -27,6 +28,18 @@ div.crumb {
width: 100%;
}
div.title {
background: #562D6F;
color: #d9d9d9;
width: 100%;
position: absolute;
top: 0;
left: 0;
font-size: 1.7em;
line-height: 1.3;
text-align: center;
}
div.footnotes {
border-top: 10px solid #7D9B3E;
}

View file

@ -21,15 +21,12 @@
</script>
</head>
<body>
<!-- breadcrumb navigation -->
<div class="crumb">
<%= breadcrumbs_trail.map do |crumb|
target = crumb[:short_title] || crumb[:title] || crumb.name
"<a class='crumb' href='#{crumb.identifier}'>#{target}</a>"
end.join(" » ") %>
</div>
<div class="main">
<!-- page title -->
<% if @item[:title] %>
<div class="title"><%= @item[:title] %></div>
<% end %>
<!-- epistemic and technical state -->
<div class="episteme">
<% if @item[:episteme] %>
@ -54,5 +51,12 @@
</div>
<!-- breadcrumb navigation -->
<div class="crumb">
<%= breadcrumbs_trail.map do |crumb|
target = crumb[:short_title] || crumb[:title] || crumb.name
"<a class='crumb' href='#{crumb.identifier}'>#{target}</a>"
end.join(" » ") %>
</div>
</body>
</html>