1
0
Fork 0
mirror of https://github.com/fmap/muflax65ngodyewp.onion synced 2024-07-01 10:46:49 +02:00
muflax65ngodyewp.onion/layouts/default.erb
muflax 84ce8e58c6 * improved list css
* added layout support for org-mode
* added 'stuff' category
* fixed phaidros metadata
2011-10-10 21:58:15 +02:00

63 lines
2.1 KiB
Plaintext

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title><%= @item[:title] %></title>
<link rel="stylesheet" type="text/css" href="/style.css">
<meta name="generator" content="nanoc">
<link rel="alternate" href="/rss.xml" type="application/rss+xml"
title="lies and wonderland" />
<!-- google analytics -->
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-25523509-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</head>
<body>
<div class="main">
<!-- page title -->
<% if @item[:title] %>
<div class="title"><a class="title" href="/"><%= @item[:title] %></a></div>
<% end %>
<!-- epistemic and technical state -->
<div class="episteme">
<% if @item[:episteme] %>
<p><span class="align_left">
Last modified:
<a class='episteme' href='/changelog/'>
<%= @item[:date] %>
</a> (<%= techne @item[:techne] %>).
</span>
<span class="align_right">
Epistemic state:
<a class='episteme' href='/episteme/'>
<%= episteme @item[:episteme] %></a>.
</span>
</p>
<% end %>
</div>
<!-- actual content (not indented to protect markdown) -->
<%= yield %>
</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>