public
Description: The ultra-lightweight ultra-flexible blogging engine with a fetish for birds and misspellings.
Homepage: http://chyrp.net/
Clone URL: git://github.com/vito/chyrp.git
Click here to lend your support to: chyrp and make a donation at www.pledgie.com !
Theme cleanup.
vito (author)
Sat Aug 30 10:38:57 -0700 2008
commit  d00d6dabe94cefdfbe1e7c77dfa158f4e668021b
tree    1d8b7ff55d4fad454a9f502aaa34628fe105835e
parent  2e282608cfe53e4d16e2761c6b87d5c120a673c4
...
1
 
2
3
4
...
1
2
3
4
5
0
@@ -1,4 +1,5 @@
0
 {% extends "layouts/default.twig" %}
0
+
0
 {% block content %}
0
   <h2>${ "Controls" | translate }</h2>
0
   <form action="{% url "controls/" %}" method="post">
...
1
 
2
3
4
...
1
2
3
4
5
0
@@ -1,4 +1,5 @@
0
 {% extends "layouts/default.twig" %}
0
+
0
 {% block content %}
0
   <h2>${ "Log In" | translate }</h2>
0
   <form action="{% url "login/" %}" method="post">
...
1
 
2
3
4
...
1
2
3
4
5
0
@@ -1,4 +1,5 @@
0
 {% extends "layouts/default.twig" %}
0
+
0
 {% block content %}
0
   <h2>${ "Lost Password" | translate }</h2>
0
   <form action="{% url "lost_password/" %}" method="post">
...
1
 
2
3
4
...
1
2
3
4
5
0
@@ -1,4 +1,5 @@
0
 {% extends "layouts/default.twig" %}
0
+
0
 {% block content %}
0
   <h2>${ "Register" | translate }</h2>
0
   <form action="{% url "register/" %}" method="post">
...
1
 
2
3
4
...
1
2
3
4
5
0
@@ -1,4 +1,5 @@
0
 {% extends "layouts/default.twig" %}
0
+
0
 {% block content %}
0
 {% if archives %} {# List? (For all/yearly archives) #}
0
 {% if GET.year != null %}
...
1
 
2
3
4
...
1
2
3
4
5
0
@@ -1,4 +1,5 @@
0
 {% extends "layouts/default.twig" %}
0
+
0
 {% block content %}
0
 {% if posts.paginated %}
0
           <h1>${ "Drafts" | translate }</h1>
...
1
 
2
3
4
...
1
2
3
4
5
0
@@ -1,4 +1,5 @@
0
 {% extends "layouts/default.twig" %}
0
+
0
 {% block content %}
0
 {% for post in posts.paginated %}
0
 {% include "feathers/" ~ post.feather ~ ".twig" %}
...
1
 
2
3
4
...
1
2
3
4
5
0
@@ -1,4 +1,5 @@
0
 {% extends "layouts/default.twig" %}
0
+
0
 {% block content %}
0
 {% if posts.paginated %}
0
     <h1>${ "Posts tagged with &#8220;%s&#8221;" | translate | format(tag | escape) }</h1>
...
1
 
2
3
4
...
1
2
3
4
5
0
@@ -1,4 +1,5 @@
0
 {% extends "layouts/default.twig" %}
0
+
0
 {% block content %}
0
     {% for tag in tag_cloud %}
0
     {% if loop.first %}<h1>${ "Tag Maelstrom" | translate }</h1>{% endif %}
...
1
 
2
3
4
...
1
2
3
4
5
0
@@ -1,4 +1,5 @@
0
 {% extends "layouts/default.twig" %}
0
+
0
 {% block content %}
0
         {% if not post.next.no_results %}<a class="right next_post" href="$post.next.url">${ post.next.title | truncate(40) } &rarr;</a>{% endif %}
0
         {% if not post.prev.no_results %}<a class="left prev_post" href="$post.prev.url">&larr; ${ post.prev.title | truncate(40) }</a>{% endif %}

Comments