<?xml version="1.0" encoding="utf-8" ?>

<rss version="2.0" 
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   xmlns:admin="http://webns.net/mvcb/"
   xmlns:dc="http://purl.org/dc/elements/1.1/"
   xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
   xmlns:wfw="http://wellformedweb.org/CommentAPI/"
   xmlns:content="http://purl.org/rss/1.0/modules/content/"
   >
<channel>
    <title>Bulletproof - Features</title>
    <link>http://s9y-bulletproof.com/</link>
    <description>Serendipity template framework</description>
    <dc:language>en</dc:language>
    <generator>Serendipity 1.2.1 - http://www.s9y.org/</generator>
    <pubDate>Tue, 30 Oct 2007 16:39:18 GMT</pubDate>

    <image>
        <url>http://s9y-bulletproof.com/templates/bulletproof/img/s9y_banner_small.png</url>
        <title>RSS: Bulletproof - Features - Serendipity template framework</title>
        <link>http://s9y-bulletproof.com/</link>
        <width>100</width>
        <height>21</height>
    </image>

<item>
    <title>Individual header images for each category</title>
    <link>http://s9y-bulletproof.com/archives/21-Individual-header-images-for-each-category.html</link>
            <category>Features</category>
    
    <comments>http://s9y-bulletproof.com/archives/21-Individual-header-images-for-each-category.html#comments</comments>
    <wfw:comment>http://s9y-bulletproof.com/wfwcomment.php?cid=21</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://s9y-bulletproof.com/rss.php?version=2.0&amp;type=comments&amp;cid=21</wfw:commentRss>
    

    <author>nospam@example.com (David Cummins)</author>
    <content:encoded>
    Serendipity user m2.ag asked this question on the &lt;a href=&quot;http://board.s9y.org/viewtopic.php?t=11407&quot; title=&quot;S9y forum&quot;&gt;Serendipity forum&lt;/a&gt;:&lt;blockquote&gt;&lt;em&gt;Is there a chance to use an individual header image for each category (a category title/als ein kapitel-titel)?&lt;br /&gt;
&lt;br /&gt;
This means for example:&lt;br /&gt;
&lt;br /&gt;
      Category &quot;News&quot; shows a foto of a newspaper as header&lt;br /&gt;
      Category &quot;About&quot; shows a foto of a book as header&lt;br /&gt;
      Category &quot;Contact&quot; shows a foto of a pen as header&lt;br /&gt;
      etc.&lt;/em&gt;&lt;/blockquote&gt;Serendipity core developer Garvin Hicking supplied the following answer:&lt;blockquote&gt;&lt;em&gt;You can use the bulletproof template for that, it offers selection of a header image.&lt;br /&gt;
&lt;br /&gt;
Then you install the &quot;Properties/Templates&quot; plugin. Now for each of your categories, you choose the bulletproof template. Then you can configure the theme options for those categories independently!&lt;br /&gt;
&lt;br /&gt;
So you still only use one template directory, but template options are distinct for each category.&lt;br /&gt;
&lt;br /&gt;
You need s9y 1.2 or newer for this feature. &lt;/em&gt;&lt;/blockquote&gt;So, now, using bulletproof as your template, you can easily change your header image for each category - or any other item in the template configuration - by following Garvin&#039;s instructions. 
    </content:encoded>

    <pubDate>Tue, 30 Oct 2007 10:40:47 +0000</pubDate>
    <guid isPermaLink="false">http://s9y-bulletproof.com/archives/21-guid.html</guid>
    
</item>
<item>
    <title>Date format</title>
    <link>http://s9y-bulletproof.com/archives/14-Date-format.html</link>
            <category>Features</category>
    
    <comments>http://s9y-bulletproof.com/archives/14-Date-format.html#comments</comments>
    <wfw:comment>http://s9y-bulletproof.com/wfwcomment.php?cid=14</wfw:comment>

    <slash:comments>4</slash:comments>
    <wfw:commentRss>http://s9y-bulletproof.com/rss.php?version=2.0&amp;type=comments&amp;cid=14</wfw:commentRss>
    

    <author>nospam@example.com (Matthias Mees)</author>
    <content:encoded>
    &lt;p&gt;In the entry on &lt;a href=&quot;http://s9y-bulletproof.com/index.php?/archives/10-Theme-options.html&quot;&gt;theme options&lt;/a&gt; I mentioned the date format and referenced to the &lt;a href=&quot;http://php.net/strftime&quot;&gt;strftime section of the PHP manual&lt;/a&gt;. While coders and other geeks will already be very familiar with this, new users and those with no PHP experience probably will not be. So let&#039;s see what all those funny little characters actually mean.&lt;/p&gt;&lt;p&gt;&lt;tt&gt;%A, %B %e. %Y&lt;/tt&gt;, what the hell is that supposed to mean? Well, these are variable which basically tell Serendipity how to display a date using the PHP function &lt;a href=&quot;http://php.net/strftime&quot;&gt;strftime&lt;/a&gt;. Every combination of % and a letter stands for a part of the possible date formats. These are the variables actually used in Bulletproof:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;strong&gt;&lt;tt&gt;%a or %A&lt;/tt&gt;&lt;/strong&gt; Abbreviated (&lt;tt&gt;%a&lt;/tt&gt;) or full (&lt;tt&gt;%A&lt;/tt&gt;) weekday name.&lt;/li&gt;&lt;li&gt;&lt;strong&gt;&lt;tt&gt;%b or %B&lt;/tt&gt;&lt;/strong&gt; Name of the month. Again, abbreviated or full.&lt;/li&gt;&lt;li&gt;&lt;strong&gt;&lt;tt&gt;%d&lt;/tt&gt;&lt;/strong&gt; Day of the month as a number with leading zero, i.e. ranging from 01 to 31.&lt;/li&gt;&lt;li&gt;&lt;strong&gt;&lt;tt&gt;%e&lt;/tt&gt;&lt;/strong&gt; Same as &lt;tt&gt;%d&lt;/tt&gt; above, but with a space instead of the leading zero, i.e. ranging from 1 to 31.&lt;/li&gt;&lt;li&gt;&lt;strong&gt;&lt;tt&gt;%m&lt;/tt&gt;&lt;/strong&gt; The month as a decimal number with leading zero, i.e. ranging from 01 to 12.&lt;/li&gt;&lt;li&gt;&lt;strong&gt;&lt;tt&gt;%y or %Y&lt;/tt&gt;&lt;/strong&gt; The year as a decimal number, either with a century indicated (&lt;tt&gt;%Y&lt;/tt&gt;) or without (&lt;tt&gt;%y&lt;/tt&gt;)&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;These can be combined with dots or hyphens to format the date display in a Serendipity blog. For example, the default date format in Bulletproof is the one mentioned above: &lt;tt&gt;%A, %B %e. %Y&lt;/tt&gt;. This means the date will by default be displayed like this in a blog configured to use the English language:&lt;/p&gt;&lt;blockquote&gt;&lt;p&gt;Full weekday name followed by a comma, then full name of the month and decimal day of the month without a leading zero followed by a dot and the year with century indicated.&lt;/p&gt;&lt;/blockquote&gt;&lt;p&gt;For example, for the time of writing this entry, that would result to&lt;/p&gt;&lt;blockquote&gt;&lt;p&gt;Tuesday, August 21. 2007&lt;/p&gt;&lt;/blockquote&gt;&lt;p&gt;Got it? However, if this sounds too complicated, just stick with the default or play with the theme option until you get a satisfying result &lt;img src=&quot;http://s9y-bulletproof.com/templates/default/img/emoticons/smile.png&quot; alt=&quot;:-)&quot; style=&quot;display: inline; vertical-align: bottom;&quot; class=&quot;emoticon&quot; /&gt;&lt;/p&gt; 
    </content:encoded>

    <pubDate>Tue, 21 Aug 2007 14:05:00 +0000</pubDate>
    <guid isPermaLink="false">http://s9y-bulletproof.com/archives/14-guid.html</guid>
    
</item>
<item>
    <title>Customizable navigation</title>
    <link>http://s9y-bulletproof.com/archives/11-Customizable-navigation.html</link>
            <category>Features</category>
    
    <comments>http://s9y-bulletproof.com/archives/11-Customizable-navigation.html#comments</comments>
    <wfw:comment>http://s9y-bulletproof.com/wfwcomment.php?cid=11</wfw:comment>

    <slash:comments>5</slash:comments>
    <wfw:commentRss>http://s9y-bulletproof.com/rss.php?version=2.0&amp;type=comments&amp;cid=11</wfw:commentRss>
    

    <author>nospam@example.com (Matthias Mees)</author>
    <content:encoded>
    &lt;p&gt;A frequently asked question (or better: feature) in the s9y forums has always been adding an additional navigation to a s9y-powered blog. In the past, this required modifiying the template&#039;s files, until the theme options were added to Serendipity&#039;s features. Bulletproof provides an additional navigation bar which can be extensively customized using the theme options. Since these options are very powerful, they will be explained more in detail than the other &lt;a href=&quot;http://www.s9y-bulletproof.com/index.php?/archives/10-Theme-options.html&quot; title=&quot;Entry on theme options&quot;&gt;theme options&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;First of all, let&#039;s look at the theme options related to the customizable navigation bar:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;strong&gt;Position of the navbar:&lt;/strong&gt; Choose one of five options for the position of the navigation bar. It can be displayed above or below the banner or in either sidebar. Of course, it can also be deactivated altogether.&lt;/li&gt;&lt;li&gt;&lt;strong&gt;Show navigation links in the footer:&lt;/strong&gt; The links from the navbar can also be displayed in the page footer as an additional navigation source. These links will be the same links you have in the navigation bar. They are a copy of the navbar links, placed in the footer as a site visitor convenience.  When enabled, your visitors will not have to scroll back to the top of the page to use site navigation.  Footer navigation links will &lt;em&gt;not&lt;/em&gt; be displayed if the navbar is deactivated.&lt;/li&gt;&lt;li&gt;&lt;strong&gt;Show quicksearch in the navbar:&lt;/strong&gt; If, and only if, the navigation bar is displayed above or below the banner, the input box for s9y&#039;s search option can be displayed within the navigation bar. This does &lt;em&gt;not&lt;/em&gt; work if the navbar is displayed in either sidebar! Also, the HTML output of the quicksearch sidebar item will be automagically suppressed, you do &lt;em&gt;not&lt;/em&gt; have to deactivate it under &quot;Configure Plugins&quot;.&lt;/li&gt;&lt;li&gt;&lt;strong&gt;Title for navigation menu:&lt;/strong&gt; If the navigation menu is displayed in either sidebar, it should have a title. Use this text box to enter the desired title. This title is only for when the navigation menu is displayed in the sidebar - the title will never be displayed if the navigation menu is displayed above or below the header.&lt;/li&gt;&lt;/ul&gt; &lt;br /&gt;&lt;a href=&quot;http://s9y-bulletproof.com/archives/11-Customizable-navigation.html#extended&quot;&gt;Continue reading &quot;Customizable navigation&quot;&lt;/a&gt;
    </content:encoded>

    <pubDate>Tue, 21 Aug 2007 13:02:00 +0000</pubDate>
    <guid isPermaLink="false">http://s9y-bulletproof.com/archives/11-guid.html</guid>
    
</item>
<item>
    <title>Theme options</title>
    <link>http://s9y-bulletproof.com/archives/10-Theme-options.html</link>
            <category>Features</category>
    
    <comments>http://s9y-bulletproof.com/archives/10-Theme-options.html#comments</comments>
    <wfw:comment>http://s9y-bulletproof.com/wfwcomment.php?cid=10</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://s9y-bulletproof.com/rss.php?version=2.0&amp;type=comments&amp;cid=10</wfw:commentRss>
    

    <author>nospam@example.com (Matthias Mees)</author>
    <content:encoded>
    &lt;p&gt;Bulletproof&#039;s primary design goal originally was to build a layout base which would make it possible to have the &quot;traditional&quot; &lt;a href=&quot;http://s9y-bulletproof.com/index.php?/archives/4-Layout-types.html&quot; title=&quot;Entry on bulletproof layout types&quot;&gt;website/blog layouts&lt;/a&gt; so the layout would not break in any modern web browser. Along the way, we also made great use of the so-called &quot;theme options&quot;. These are certain options for the template the user can modify in the admin backend under &quot;Manage Styles&quot;.&lt;/p&gt;&lt;p&gt;We&#039;re pretty confident we have addressed almost every need a user could have and also have simplified some tweaks to a s9y-based weblog which have been frequently asked in the &lt;a href=&quot;http://board.s9y.org&quot;&gt;forums&lt;/a&gt; in the past. Let&#039;s walk you through the theme options available in bulletproof in their order of appearance, shall we?&lt;/p&gt; &lt;br /&gt;&lt;a href=&quot;http://s9y-bulletproof.com/archives/10-Theme-options.html#extended&quot;&gt;Continue reading &quot;Theme options&quot;&lt;/a&gt;
    </content:encoded>

    <pubDate>Thu, 16 Aug 2007 11:08:00 +0000</pubDate>
    <guid isPermaLink="false">http://s9y-bulletproof.com/archives/10-guid.html</guid>
    
</item>
<item>
    <title>Colorsets</title>
    <link>http://s9y-bulletproof.com/archives/5-Colorsets.html</link>
            <category>Features</category>
    
    <comments>http://s9y-bulletproof.com/archives/5-Colorsets.html#comments</comments>
    <wfw:comment>http://s9y-bulletproof.com/wfwcomment.php?cid=5</wfw:comment>

    <slash:comments>5</slash:comments>
    <wfw:commentRss>http://s9y-bulletproof.com/rss.php?version=2.0&amp;type=comments&amp;cid=5</wfw:commentRss>
    

    <author>nospam@example.com (Matthias Mees)</author>
    <content:encoded>
    &lt;p&gt;Although bulletproof is meant to be used as a framework for new templates by template designers, it can also be used as a template out of the box. bulletproof ships with three individual colorsets:&lt;/p&gt;&lt;div style=&quot;clear:both; padding-left: 38px&quot;&gt;&lt;div class=&quot;serendipity_imageComment_left&quot; style=&quot;width: 180px;&quot;&gt;&lt;div class=&quot;serendipity_imageComment_img&quot;&gt;&lt;a  class=&#039;serendipity_image_link&#039;  rel=&#039;lightbox&#039; href=&#039;http://s9y-bulletproof.com/uploads/screenshots/bp-purple.png&#039; onclick=&quot;F1 = window.open(&#039;/uploads/screenshots/bp-purple.png&#039;,&#039;Zoom&#039;,&#039;height=495,width=855,top=144,left=92,toolbar=no,menubar=no,location=no,resize=1,resizable=1,scrollbars=yes&#039;); return false;&quot;&gt;&lt;!-- s9ymdb:10 --&gt;&lt;img width=&quot;180&quot; height=&quot;103&quot;  src=&quot;http://s9y-bulletproof.com/uploads/screenshots/bp-purple.serendipityThumb.png&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class=&quot;serendipity_imageComment_txt&quot;&gt;Purple&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;serendipity_imageComment_left&quot; style=&quot;width: 180px&quot;&gt;&lt;div class=&quot;serendipity_imageComment_img&quot;&gt;&lt;a  class=&#039;serendipity_image_link&#039;  rel=&#039;lightbox&#039; href=&#039;http://s9y-bulletproof.com/uploads/screenshots/bp-blue.png&#039; onclick=&quot;F1 = window.open(&#039;/uploads/screenshots/bp-blue.png&#039;,&#039;Zoom&#039;,&#039;height=495,width=815,top=144,left=112,toolbar=no,menubar=no,location=no,resize=1,resizable=1,scrollbars=yes&#039;); return false;&quot;&gt;&lt;!-- s9ymdb:8 --&gt;&lt;img width=&quot;180&quot; height=&quot;103&quot;  src=&quot;http://s9y-bulletproof.com/uploads/screenshots/bp-blue.serendipityThumb.png&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class=&quot;serendipity_imageComment_txt&quot;&gt;Blue&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;serendipity_imageComment_left&quot; style=&quot;width: 180px&quot;&gt;&lt;div class=&quot;serendipity_imageComment_img&quot;&gt;&lt;a  class=&#039;serendipity_image_link&#039;  rel=&#039;lightbox&#039; href=&#039;http://s9y-bulletproof.com/uploads/screenshots/bp-green.png&#039; onclick=&quot;F1 = window.open(&#039;/uploads/screenshots/bp-green.png&#039;,&#039;Zoom&#039;,&#039;height=495,width=855,top=144,left=92,toolbar=no,menubar=no,location=no,resize=1,resizable=1,scrollbars=yes&#039;); return false;&quot;&gt;&lt;!-- s9ymdb:9 --&gt;&lt;img width=&quot;180&quot; height=&quot;103&quot;  src=&quot;http://s9y-bulletproof.com/uploads/screenshots/bp-green.serendipityThumb.png&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class=&quot;serendipity_imageComment_txt&quot;&gt;Green&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;p style=&quot;clear: left;&quot;&gt;All colorsets can be customized to some extent using the theme options.&lt;/p&gt; 
    </content:encoded>

    <pubDate>Thu, 02 Aug 2007 12:17:00 +0000</pubDate>
    <guid isPermaLink="false">http://s9y-bulletproof.com/archives/5-guid.html</guid>
    
</item>
<item>
    <title>Layout types</title>
    <link>http://s9y-bulletproof.com/archives/4-Layout-types.html</link>
            <category>Features</category>
    
    <comments>http://s9y-bulletproof.com/archives/4-Layout-types.html#comments</comments>
    <wfw:comment>http://s9y-bulletproof.com/wfwcomment.php?cid=4</wfw:comment>

    <slash:comments>3</slash:comments>
    <wfw:commentRss>http://s9y-bulletproof.com/rss.php?version=2.0&amp;type=comments&amp;cid=4</wfw:commentRss>
    

    <author>nospam@example.com (Matthias Mees)</author>
    <content:encoded>
    &lt;p&gt;bulletproof comes with 6 basic layouts:&lt;/p&gt;&lt;div&gt;&lt;a  class=&#039;serendipity_image_link&#039;  rel=&#039;lightbox&#039; href=&#039;http://s9y-bulletproof.com/uploads/screenshots/sbs.jpg&#039;&gt;&lt;!-- s9ymdb:6 --&gt;&lt;img width=&quot;180&quot; height=&quot;133&quot; style=&quot;float: left; border: 0px; padding-left: 38px; padding-right: 5px;&quot; src=&quot;http://s9y-bulletproof.com/uploads/screenshots/sbs.serendipityThumb.jpg&quot; alt=&quot;Three columns, S-B-S&quot; /&gt;&lt;/a&gt;&lt;a  class=&#039;serendipity_image_link&#039;  rel=&#039;lightbox&#039; href=&#039;http://s9y-bulletproof.com/uploads/screenshots/bss.jpg&#039;&gt;&lt;!-- s9ymdb:3 --&gt;&lt;img width=&quot;180&quot; height=&quot;133&quot; style=&quot;float: left; border: 0px; padding-left: 5px; padding-right: 5px;&quot; src=&quot;http://s9y-bulletproof.com/uploads/screenshots/bss.serendipityThumb.jpg&quot; alt=&quot;Three columns, B-S-S&quot; /&gt;&lt;/a&gt;&lt;a  class=&#039;serendipity_image_link&#039;  rel=&#039;lightbox&#039; href=&#039;http://s9y-bulletproof.com/uploads/screenshots/ssb.jpg&#039;&gt;&lt;!-- s9ymdb:7 --&gt;&lt;img width=&quot;180&quot; height=&quot;133&quot; style=&quot;float: left; border: 0px; padding-left: 5px; padding-right: 32px;&quot; src=&quot;http://s9y-bulletproof.com/uploads/screenshots/ssb.serendipityThumb.jpg&quot; alt=&quot;Three columns, S-S-B&quot; /&gt;&lt;/a&gt;&lt;/div&gt;

&lt;div style=&quot;clear: left; margin-left: 36px;&quot;&gt;
	&lt;span class=&#039;serendipity_webimage_text&#039;&gt;
Three columns, S-B-S
	&lt;/span&gt;
	&lt;span class=&#039;serendipity_webimage_text&#039;&gt;
Three columns, B-S-S, CF
	&lt;/span&gt;
	&lt;span class=&#039;serendipity_webimage_text&#039;&gt;
Three columns, S-S-B
	&lt;/span&gt;
&lt;/div&gt;
&lt;div&gt;&lt;a  class=&#039;serendipity_image_link&#039;  rel=&#039;lightbox&#039; href=&#039;http://s9y-bulletproof.com/uploads/screenshots/sb.jpg&#039;&gt;&lt;!-- s9ymdb:5 --&gt;&lt;img width=&quot;180&quot; height=&quot;133&quot; style=&quot;float: left; border: 0px; padding-left: 38px; padding-right: 5px;&quot; src=&quot;http://s9y-bulletproof.com/uploads/screenshots/sb.serendipityThumb.jpg&quot; alt=&quot;Two columns, S-B&quot; /&gt;&lt;/a&gt;&lt;a  class=&#039;serendipity_image_link&#039;  rel=&#039;lightbox&#039; href=&#039;http://s9y-bulletproof.com/uploads/screenshots/bs.jpg&#039;&gt;&lt;!-- s9ymdb:2 --&gt;&lt;img width=&quot;180&quot; height=&quot;133&quot; style=&quot;float: left; border: 0px; padding-left: 5px; padding-right: 5px;&quot; src=&quot;http://s9y-bulletproof.com/uploads/screenshots/bs.serendipityThumb.jpg&quot; alt=&quot;Two columns, B-S&quot; /&gt;&lt;/a&gt;&lt;a  class=&#039;serendipity_image_link&#039;  rel=&#039;lightbox&#039; href=&#039;http://s9y-bulletproof.com/uploads/screenshots/onecol.jpg&#039;&gt;&lt;!-- s9ymdb:4 --&gt;&lt;img width=&quot;180&quot; height=&quot;133&quot; style=&quot;float: left; border: 0px; padding-left: 5px; padding-right: 32px;&quot; src=&quot;http://s9y-bulletproof.com/uploads/screenshots/onecol.serendipityThumb.jpg&quot; alt=&quot;One column, sidebar(s) below&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div style=&quot;clear: left; margin-left: 36px;&quot;&gt;
	&lt;span class=&#039;serendipity_webimage_text&#039;&gt;
Two columns, S-B
	&lt;/span&gt;
	&lt;span class=&#039;serendipity_webimage_text&#039;&gt;
Two columns, B-S, CF
	&lt;/span&gt;
	&lt;span class=&#039;serendipity_webimage_text&#039;&gt;
One column, sidebar(s) below, CF
	&lt;/span&gt;
&lt;/div&gt;

&lt;p&gt;&lt;br /&gt;This covers the most popular layout types for websites and blogs: 3-column layouts with various sidebar combinations, both 2-column layouts possible, and an additional 1-column layout showing the sidebars below the actual blog content (the entries). All of these layout are flexible, meaning their column&#039;s widths adjust to the width of the viewer&#039;s browser window.&lt;/p&gt;&lt;p&gt;You&#039;ll notice some of them are marked CF (content first), meaning the actual content of the blog (the entries) is the first item in the output code generated by Serendipity. It would have been possible to make &lt;strong&gt;all&lt;/strong&gt; layouts CF, but that would have required additional HTML markup which we, the developers, felt was not worth the effort.&lt;/p&gt; 
    </content:encoded>

    <pubDate>Wed, 01 Aug 2007 10:14:00 +0000</pubDate>
    <guid isPermaLink="false">http://s9y-bulletproof.com/archives/4-guid.html</guid>
    
</item>

</channel>
</rss>
