This website works better with JavaScript.
Home
Explore
Help
Sign In
jmg
/
hyde
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
Fixed basic template to get the right tag representation. (Issue
#53
)
main
Lakshmi Vyasarajan
13 years ago
parent
ad2b788487
commit
54648364e1
2 changed files
with
1 additions
and
2 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+0
-1
hyde/ext/plugins/tagger.py
+1
-1
hyde/layouts/basic/layout/tagged_posts.j2
+ 0
- 1
hyde/ext/plugins/tagger.py
View File
@@ -29,7 +29,6 @@ class Tag(Expando):
self.name = name
self.resources = []
def __repr__(self):
return self.name
+ 1
- 1
hyde/layouts/basic/layout/tagged_posts.j2
View File
@@ -2,7 +2,7 @@
{% block main %}
<section class="archives">
<h1 class="tag title">{{ tag }}</h1>
<h1 class="tag title">{{ tag
.name
}}</h1>
<ul class="posts clear">
{% for resource in walker() -%}
<li class="post clear">
Write
Preview
Loading…
Cancel
Save