From: Penny Leach Date: Mon, 29 May 2006 07:19:23 +0000 (+1200) Subject: adding my she.geek.nz nav plugin X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=24a291096e2844eecc48e31597022d071436b5af;p=s9y.git adding my she.geek.nz nav plugin --- diff --git a/plugins/serendipity_plugin_sgn_nav/serendipity_plugin_sgn_nav.php b/plugins/serendipity_plugin_sgn_nav/serendipity_plugin_sgn_nav.php new file mode 100644 index 0000000..a5d5ba9 --- /dev/null +++ b/plugins/serendipity_plugin_sgn_nav/serendipity_plugin_sgn_nav.php @@ -0,0 +1,60 @@ +add('name', PLUGIN_SGN_NAV_NAME); + $propbag->add('description', PLUGIN_SGN_NAV_BLAHBLAH); + $propbag->add('stackable', false); + $propbag->add('author', 'Penny Leach'); + $propbag->add('version', '1.0'); + $propbag->add('requirements', array( + 'serendipity' => '0.8', + 'smarty' => '2.6.7', + 'php' => '4.1.0' + )); + + } + + function generate_content(&$title) + { + global $serendipity; + + $title = $this->title; + + echo '

This is a website about me. I am just this girl, who lives in Wellington, ' + .'works on open source web stuff, and drinks too much.

' + .'

I write mundane crap about things I do. If you\'re interested in things ' + .'about me in list format, go here. ' + .'You can also send me email, or ' + .'subscribe to my rss feed. ' + .'My gpg key id is 0xA30EC22B

' + .'

I give thumbs up to: exorsus.net for hosting ' + .'my sorry ass, and serendipity for writing such fine ' + .'blog software and allowing me to hack it to pieces.

'; + } +} + +/* vim: set sts=4 ts=4 expandtab : */ +?>