summary refs log tree commit diff stats
path: root/theme/post.tpl
diff options
context:
space:
mode:
authorStarla Insigna <hatkirby@fourisland.com>2008-12-07 16:45:24 -0500
committerStarla Insigna <hatkirby@fourisland.com>2008-12-07 16:45:24 -0500
commita930e827048acf17d04a6af06c1616a72dee714a (patch)
treeda626bd9bdee9c21210ab8f48fca8f686785a022 /theme/post.tpl
parent62d716cb332877662b3c6abf2206efb755a93a7f (diff)
downloadfourisland-a930e827048acf17d04a6af06c1616a72dee714a.tar.gz
fourisland-a930e827048acf17d04a6af06c1616a72dee714a.tar.bz2
fourisland-a930e827048acf17d04a6af06c1616a72dee714a.zip
Added support for a variable amount of tags
Previously, the blogging engine only allowed for three tags per post, and it also stored each in seperate fields. Now, all tags are stored in one
field and there can be more than three. The only functionality that has been removed because of this is that now, on archive pages, tags are not
shown next to the current month's posts as they used to be, because the Four Island templating system does not yet support sub-blocks of sub-blocks.
Diffstat (limited to 'theme/post.tpl')
-rwxr-xr-xtheme/post.tpl14
1 files changed, 7 insertions, 7 deletions
diff --git a/theme/post.tpl b/theme/post.tpl index 91bf4e9..3314d4e 100755 --- a/theme/post.tpl +++ b/theme/post.tpl
@@ -6,16 +6,16 @@
6<!--BEGIN POST--> 6<!--BEGIN POST-->
7<DIV CLASS="post vevent" ID="post-<!--POST.ID-->"> 7<DIV CLASS="post vevent" ID="post-<!--POST.ID-->">
8 <DIV CLASS="post-date-<!--POST.YEARID-->"> 8 <DIV CLASS="post-date-<!--POST.YEARID-->">
9 <ABBR CLASS="dtstart" TITLE="<!--POST.DATE-->"> 9 <ABBR CLASS="dtstart" TITLE="<!--POST.DATE-->">
10 <SPAN CLASS="post-month"><!--POST.MONTH--></SPAN> 10 <SPAN CLASS="post-month"><!--POST.MONTH--></SPAN>
11 <SPAN CLASS="post-day"><!--POST.DAY--></SPAN> 11 <SPAN CLASS="post-day"><!--POST.DAY--></SPAN>
12 </ABBR> 12 </ABBR>
13 </DIV> 13 </DIV>
14 14
15 <DIV CLASS="post-title"> 15 <DIV CLASS="post-title">
16 <H2> 16 <H2>
17 <!--BEGIN EXTERNAL--><A CLASS="url" HREF="/blog/<!--POST.CODED-->/" REL="bookmark" TITLE="Permalink for <!--POST.TITLE-->"><!--END EXTERNAL--> 17 <!--BEGIN EXTERNAL--><A CLASS="url" HREF="/blog/<!--POST.CODED-->/" REL="bookmark" TITLE="Permalink for <!--POST.TITLE-->"><!--END EXTERNAL-->
18 <SPAN CLASS="summary"><!--POST.TITLE--></SPAN> 18 <SPAN CLASS="summary"><!--POST.TITLE--></SPAN>
19 <!--BEGIN EXTERNAL--></A><!--END EXTERNAL--> 19 <!--BEGIN EXTERNAL--></A><!--END EXTERNAL-->
20 </H2> 20 </H2>
21 21
@@ -24,9 +24,9 @@
24 </SPAN> 24 </SPAN>
25 25
26 <SPAN CLASS="post-tag-3 category"> 26 <SPAN CLASS="post-tag-3 category">
27 <A CLASS="noVisit" HREF="/blog/tag/<!--POST.TAG1-->.php" REL="tag" TITLE="<!--POST.TAG1-->"><!--POST.TAG1--></A> 27 <!--BEGIN POST.TAGS-->
28 <A CLASS="noVisit" HREF="/blog/tag/<!--POST.TAG2-->.php" REL="tag" TITLE="<!--POST.TAG2-->"><!--POST.TAG2--></A> 28 <A CLASS="noVisit" HREF="/blog/tag/<!--POST.TAGS.TAG-->.php" REL="tag" TITLE="<!--POST.TAGS.TAG-->"><!--POST.TAGS.TAG--></A>
29 <A CLASS="noVisit" HREF="/blog/tag/<!--POST.TAG3-->.php" REL="tag" TITLE="<!--POST.TAG3-->"><!--POST.TAG3--></A> 29 <!--END POST.TAGS-->
30 </SPAN> 30 </SPAN>
31 31
32 <!--BEGIN EXTERNAL--> 32 <!--BEGIN EXTERNAL-->