initial commit to seperate repo
This commit is contained in:
commit
1a020ca68b
1302 changed files with 201261 additions and 0 deletions
1
themes/planetoid/AUTHORS.txt
Normal file
1
themes/planetoid/AUTHORS.txt
Normal file
|
|
@ -0,0 +1 @@
|
|||
Roberto Alsina <https://github.com/ralsina>
|
||||
2
themes/planetoid/README.md
Normal file
2
themes/planetoid/README.md
Normal 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
1
themes/planetoid/parent
Normal file
|
|
@ -0,0 +1 @@
|
|||
bootstrap
|
||||
22
themes/planetoid/templates/index.tmpl
Normal file
22
themes/planetoid/templates/index.tmpl
Normal 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>
|
||||
9
themes/planetoid/templates/post.tmpl
Normal file
9
themes/planetoid/templates/post.tmpl
Normal 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>
|
||||
Loading…
Add table
Add a link
Reference in a new issue