@ -1,8 +1,3 @@
<header>
<% if(config.home) { %><a href="<%= config.home %>">Home</a> ·<% } %>
<a href="<%= config.root %>">Blog</a>
<% if(config.feed) { %>
·
<a href="<%= url_for(config.feed.path) %>"><%= (config.feed.type == "atom") ? "Atom" : "RSS" %> Feed</a>
<% } %>
<span class="title"><a href="/">natronics.org</a></span>
</header>
@ -0,0 +1,16 @@
<p>
<em>Oculata Certitudine</em>
</p>
<h3>Git server:</h3>
<a href="https://git.natronics.org/natronics">https://git.natronics.org/natronics</a>
<h3>Some other things:</h3>
<ul>
<% page.posts.forEach(function (post) { %>
<li><a href="<%= url_for(post.path) %>"><%= post.date.format("MMMM YYYY") %>: <%= post.title %></li>
<% }) %>
</ul>
@ -20,9 +20,7 @@
<%- partial('_partial/header') %>
<%- body %>
<footer>
<% if(page.prev_link) { %><a href="<%= config.root + page.prev_link %>">< Previous</a>
<% } else if(!page.title && page.prev !== 0) { %><a href="<%= config.root %>">< Previous</a><% } %>
<% if(page.next_link) { %><a href="<%= config.root + page.next_link %>">Next ></a><% } %>
made in the boiling hot cement cubes of Philadelphia PA.
</footer>
</body>
</html>
@ -1,6 +1,4 @@
<%- partial('_partial/root', {
title: config.title,
body: page.posts.map(function(post) {
return partial('_partial/post', {post: post, link_title: true});
}).join("")
title: 'natronics.org',
body: partial('_partial/index')
}) %>
@ -272,3 +272,6 @@ label.margin-toggle:not(.sidenote-number) { display: none; }
div.table-wrapper, table, table.booktabs { width: 85%; }
div.table-wrapper { border-right: 1px solid #efefef; }
img { width: 100%; } }
footer { padding-top: 80px; }