initial commit to seperate repo

This commit is contained in:
Don Harper 2015-06-09 22:50:31 -05:00
commit 1a020ca68b
1302 changed files with 201261 additions and 0 deletions

View file

@ -0,0 +1 @@
Roberto Alsina <https://github.com/ralsina>

View file

@ -0,0 +1,2 @@
A version of the bootstrap theme for the use with the "planetoid" plugin.
This theme is not generally useful, unless you are building a planet-style site.

1
themes/planetoid/parent Normal file
View file

@ -0,0 +1 @@
bootstrap

View file

@ -0,0 +1,22 @@
## -*- coding: utf-8 -*-
<%namespace name="helper" file="index_helper.tmpl"/>
<%inherit file="base.tmpl"/>
<%block name="content">
<div class="postindex">
% for post in posts:
<article class="h-entry" style="border: 2px solid darkgrey; margin-bottom: 12px; border-radius: 4px; padding:12px; overflow: auto;">
<header>
<h1 class="p-name entry-title"><a href="${post.meta('link')}" class="u-url">${post.title()}</h1></a>
<div class="metadata">
<p class="dateline"><a href="${post.meta('link')}" rel="bookmark"><time class="published dt-published" datetime="${post.date.isoformat()}" itemprop="datePublished" title="${messages("Publication date")}">${post.formatted_date(date_format)}</time></a></p>
</div>
</header>
<div class="p-summary entry-summary">
${post.text()}
</div>
</article>
% endfor
</div>
${helper.html_pager()}
</%block>

View file

@ -0,0 +1,9 @@
## -*- coding: utf-8 -*-
<html>
<head>
<meta http-equiv="Refresh" content="0;url=${post.meta('link')}">
</head>
<body>
Redirecting you to <a href="${post.meta('link')}">the original location.</a>
</body>
</html>