1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" xmlns:n="http://nevow.com/ns/nevow/0.1">
<head>
<title n:render="title">Title</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<!-- <style type="text/css">@import url('/styles/postit.css');</style> -->
<link rel="stylesheet" type="text/css" href="/styles/postit.css" />
<script type="text/javascript">
<!--
//-->
</script>
<style type="text/css">
<!--
#content div.postit {
/* background-color: #fcc !important;*/
}
-->
</style>
</head>
<body>
<div id="main">
<div id="header">
<h1>Post-it</h1>
<p class="tagline"><a href="/">home</a> •
<a title="Atom 0.3 feed" href="atom.xml">syndicate</a>
</p>
</div>
<div id="content" n:data="get_posts" n:render="sequence">
<div class="postit" n:pattern="item" n:render="post">
<h2><a title="http://example.com" href="#">
<n:attr name="title"> <n:slot name="tit_tit_attr" /> </n:attr>
<n:attr name="href"> <n:slot name="tit_url_attr" /> </n:attr>
<n:slot name="title">Erlang, the movie</n:slot> </a>
</h2>
<p class="datetime">
<a title="foo" href="foo">
<n:attr name="title"> <n:slot name="perma_tit_attr" /> </n:attr>
<n:attr name="href"> <n:slot name="perma_url_attr" /> </n:attr>
#<n:slot name="id">832</n:slot>
</a> posted by
<n:slot name="author">deelan</n:slot> •
<n:slot name="data">Tue, Nov 16 2004</n:slot></p>
<p><n:slot name="content">Warning: 200MB of nerdness</n:slot></p>
</div>
</div>
<div id="footer">
<p>Copyright © 2004 the <a
href="http://netartmagazine.com/2003/IrcVerbamanent">#verbamanent</a>
crew • Post-it is a trademark of 3M Corp. (used without
permission) • Background image by <a
href="http://www.inuse.tk/">Stefan Gueorguiev</a> • Powered
by <a href="http://www.nevow.org/">Nevow</a>, XHTML and CSS2</p>
<p>CSS by Andrea 'deelan' Peltrin, <a href="http://www.deelan.com/">website</a></p>
</div>
<!-- /main -->
</div>
</body>
</html>
|