<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array">
    <added>
      <filename>static/images/icon_add.png</filename>
    </added>
    <added>
      <filename>static/images/icon_close.png</filename>
    </added>
    <added>
      <filename>static/images/icon_edit.png</filename>
    </added>
    <added>
      <filename>static/images/icon_help.png</filename>
    </added>
    <added>
      <filename>static/images/icon_help_big.png</filename>
    </added>
    <added>
      <filename>views/atom.xml</filename>
    </added>
  </added>
  <modified type="array">
    <modified>
      <diff>@@ -1,4 +1,4 @@
-application: blog
+application: aaronspotlatch
 version: 1
 runtime: python
 api_version: 1</diff>
      <filename>app.yaml</filename>
    </modified>
    <modified>
      <diff>@@ -121,6 +121,13 @@ class TagPage(BasePublicPage):
         self.render('views/index.html',{'entries':entries})
     
 
+class FeedHandler(BaseController):
+    def get(self,tags=None):
+        entries = Entry.all().filter('entrytype =','post').order('-date').fetch(10)
+        self.response.headers['Content-Type'] = 'application/atom+xml'
+        self.render('views/atom.xml',{'entries':entries})
+    
+
 class AdminConfig(BaseController):
     @requires_admin
     def get(self):
@@ -130,6 +137,8 @@ class AdminConfig(BaseController):
             blogedit = blogedit[0]
         else:
             blogedit = Blog()
+            blogedit.save()
+            blogedit.initialsetup()
         self.render('views/setup.html',{'blogedit':blogedit,'blogclass':Blog})
     
     def post(self):
@@ -145,10 +154,11 @@ class AdminConfig(BaseController):
         blog.title = self.request.get('title')
         blog.subtitle = self.request.get('subtitle')
         blog.layout = self.request.get('layout')
+        blog.baseurl = self.request.get('baseurl')
         blog.area1 = self.request.get('area1')
         blog.area2 = self.request.get('area2')
         blog.area3 = self.request.get('area3')
-        blog.put()
+        blog.save()
         self.redirect('/admin/entry/list/post')
     
 
@@ -167,7 +177,7 @@ class AdminEntry(BaseController):
     def post(self,entrytype='post',key=None):
         entry = None
         if key == None or key == '':
-            entry = Entry()
+            entry = Entry(blog=self.blog)
             entry.entrytype = self.request.get('entrytype')
         else:
             entry = db.get(db.Key(key))
@@ -178,7 +188,7 @@ class AdminEntry(BaseController):
         entry.content = self.request.get('content')
         entry.title = self.request.get('title')
         entry.slug = self.request.get('real_permalink')
-        self.tagswcommas = self.request.get('tags')
+        entry.tagswcommas = self.request.get('tags')
         entry.save()
         self.redirect('/admin/entry/list/%s' % entry.entrytype )
     
@@ -220,6 +230,7 @@ def main():
                      ('/admin/links/(.*)', AdminLinks),
                      ('/admin/setup', AdminConfig),
                      ('/tag/(.*)', TagPage),
+                     ('/atom', FeedHandler),
                      (r'/page/(.*)', PublicPage),
                      (r'/entry/(.*)', MainPage),
                      (r'/b/(.*)/(.*)', MainPage),</diff>
      <filename>blog.py</filename>
    </modified>
    <modified>
      <diff>@@ -10,13 +10,13 @@ indexes:
 # automatically uploaded to the admin console when you next deploy
 # your application using appcfg.py.
 
-# Used 267 times in query history.
+# Unused in query history -- copied from input.
 - kind: Entry
   properties:
   - name: date
     direction: desc
 
-# Used 202 times in query history.
+# Used 39 times in query history.
 - kind: Entry
   properties:
   - name: entrytype
@@ -31,14 +31,14 @@ indexes:
   - name: date
     direction: desc
 
-# Used 2 times in query history.
+# Unused in query history -- copied from input.
 - kind: Entry
   properties:
   - name: entrytype=
   - name: date
     direction: desc
 
-# Used 2 times in query history.
+# Unused in query history -- copied from input.
 - kind: Entry
   properties:
   - name: tags</diff>
      <filename>index.yaml</filename>
    </modified>
    <modified>
      <diff>@@ -7,25 +7,36 @@ class Cache(db.Model):
     cachekey = db.StringProperty(multiline=False)
     content = db.TextProperty()
 
-class Tag(db.Model):
-    author = db.UserProperty()
-    tag = db.StringProperty(multiline=False)
-    date = db.DateTimeProperty(auto_now_add=True)
-
 class Blog(db.Model):
     owner = db.UserProperty()
     description = db.TextProperty()
     baseurl = db.StringProperty(multiline=False,default='http://yourapp.appspot.com')
     urlpath = db.StringProperty(multiline=False)
-    date = db.DateTimeProperty(auto_now_add=True)
-    tags = db.ListProperty(db.Category)
     title = db.StringProperty(multiline=False)
     subtitle = db.StringProperty(multiline=False)
+    entrycount = db.IntegerProperty(default=0)
     layout = db.StringProperty(multiline=False,default='2cola',choices=[
         '3cola', '3colb', '2cola','2colb'])
     area1 = db.TextProperty(default='')
     area2 = db.TextProperty(default='')
     area3 = db.TextProperty(default='')
+    tags = db.TextProperty(default='{}')
+    
+    def save(self):
+        self.put()
+    
+    def initialsetup(self):
+        self.title = 'Your Blog Title'
+        self.subtitle = 'Your Blog Subtitle'
+        self.area1 = '&lt;h3&gt;Lower Left Title&lt;/h3&gt;\nContent in lower left'
+        self.area2 = '&lt;h3&gt;Center Bottom Box&lt;/h3&gt;\nContent in center footer'
+        self.area3 = '&lt;h3&gt;Right Footer&lt;/h3&gt;\nContent in footer right'
+    
+
+class Tag(db.Model):
+    blog = db.ReferenceProperty(Blog)
+    tag = db.StringProperty(multiline=False)
+    tagcount = db.IntegerProperty(default=0)
 
 class Link(db.Model):
     blog = db.ReferenceProperty(Blog)
@@ -35,6 +46,7 @@ class Link(db.Model):
 
 class Entry(db.Model):
     author = db.UserProperty()
+    blog = db.ReferenceProperty(Blog)
     content = db.TextProperty(default='')
     title = db.StringProperty(multiline=False,default='')
     date = db.DateTimeProperty(auto_now_add=True)
@@ -42,14 +54,37 @@ class Entry(db.Model):
     slug = db.StringProperty(multiline=False,default='')
     entrytype = db.StringProperty(multiline=False,default='post',choices=[
         'post','page'])
+    commentcount = db.IntegerProperty(default=0)
     
     def get_tags(self):
         '''comma delimted list of tags'''
         return ','.join([tag for tag in self.tags])
+    
     def set_tags(self, tags):
-        self.tags = [db.Category(tag.strip()) for tag in tags.split(',')]
+        if tags:
+            tagstemp = [db.Category(tag.strip()) for tag in tags.split(',')]
+            self.tagsnew = [tag for tag in tagstemp if not tag in self.tags]
+            self.tags = tagstemp
+    
     tagswcommas = property(get_tags,set_tags)
     
     def save(self):
+        &quot;&quot;&quot;
+        Use this instead of self.put(), as we do some other work here
+        &quot;&quot;&quot;
         #TODO for each tag ensure it has a tag
+        
+        # update # entry count if new
+        if not self.is_saved():
+            self.blog.entrycount += 1
+            self.blog.save()
+        #b = self.blog
+        #print b.tags
+        #for tag in self.tagsnew:
+        #    if not b.tags.has_key(tag):
+        #        b.tags.update({tag:1})
+        #    else:
+        #        b.tags.update({tag:b.tags[tag]+1})
         self.put()
+    
+</diff>
      <filename>model.py</filename>
    </modified>
    <modified>
      <diff>@@ -83,7 +83,6 @@ img.alignleft {float: left;margin: 0px 10px 10px 0px;padding: 0px;border: 1px so
 /* Main Container Ends */
 
 /* Featured Area Starts */
-
 #featured {line-height: normal;width: 966px;border: 1px solid #2583ad;margin: 0px 0px 15px;padding: 2px;}
 #featured h2 {background: #d54e21;padding: 10px;margin: 0px;text-align: left;font: bold 1.4em Georgia, &quot;Times New Roman&quot;, Times, serif;}
 #featured h2 span {padding: 0px;width: 800px;float: left;}
@@ -136,7 +135,6 @@ img.alignleft {float: left;margin: 0px 10px 10px 0px;padding: 0px;border: 1px so
 /* Right Sidebar Ends */
 
 /* Sidebar Calendar Starts */
-
 #calendar_wrap {margin: 0px;padding: 0px 0px 10px;}
 #wp-calendar {width: 174px;}
 #today {text-align: center;background: #C4E2FB!important;}
@@ -154,6 +152,30 @@ table#wp-calendar td {text-align: center;background: #e4f2fd;}
 .textwidget, .adrotatorwidget {margin: 0px;padding: 0px 0px 10px;}
 /* Sidebar Tags Ends */
 
+
+/* Box Links, and action bar    border: red 1px solid;  */
+.boxlinks {font-size: 85%;}
+.inlineboxlinks {padding: 1em;margin: 1em 0;clear: left;}
+.actionbar {margin: 0px;clear: right; padding: 0px;font-size: 115%;display: block; width:100%;height:33px; }
+.actionbar a {font-size: 123%;background:#fafafa;height:22px;}
+.right {float: right;}
+.boxlinks2 {font-size: 85%;margin-top:-24px; margin-right:-11px;background-color:#ffffff;}
+.boxlinks2 a {border: 1px solid #235C9D;text-decoration: none;padding: 3px 5px;}
+.boxlinks a, .boxlinks span {margin-top:2px; display: block;vertical-align: bottom; float: left;padding: 0.2em 0.5em;margin-right: 0.15em;}
+.boxlinks span.current {border: 1px solid #235C9D;font-weight: bold;background: #235C9D;color: #fff;}
+.boxlinks a {border: 1px solid #235C9D;text-decoration: none;}
+.boxlinks a:hover {background:#E1ECF9;}
+.boxlinks a.nextprev {font-weight: bold;}
+.boxlinks span.nextprev {color: #666;}
+.boxlinks span.nextprev {border: 1px solid #ddd;color: #999;}
+ul.boxlink {list-style-type:none;}
+div.boxlinks a.current {border-bottom: 1px solid #E1ECF9;;background:#E1ECF9;	}
+.tab-spacer{background:#E1ECF9;border:0px solid #8db2e3;border-top:0 none;height:2px;font-size:1px;line-height:1px;}
+div.formbox {border:1px solid #8db2e3;margin-top:20px;}
+
+/*  code formatting for posts */
+.code {color: #63FF00;background: #000;overflow: auto;font: normal 12px &quot;bitstream vera sans mono&quot;, monaco &quot;lucida console&quot;, &quot;courier new&quot;, courier, serif;margin: 0.9em 0; padding: 8px;}
+
 /* Footer Starts */
 
 #footer {background: #464646;padding: 0px;margin: 0px;}</diff>
      <filename>static/style.css</filename>
    </modified>
    <modified>
      <diff>@@ -55,38 +55,9 @@
             &lt;/script&gt;
         {% endif %}
         {% for entry in entries %}
-            &lt;h2&gt;&lt;a href=&quot;/admin/entry/{{ entry.entrytype }}/{{ entry.key }}&quot; rel=&quot;bookmark&quot; title=&quot;{{ entry.title }}&quot;&gt;{{ entry.title }}&lt;/a&gt; type={{ entry.entrytype }}&lt;/h2&gt;
+            &lt;h2&gt;&lt;a href=&quot;/admin/entry/{{ entry.entrytype }}/{{ entry.key }}&quot; rel=&quot;bookmark&quot; title=&quot;{{ entry.title }}&quot;&gt;{{ entry.title }}&lt;/a&gt; &lt;/h2&gt;
         {% endfor %}
     &lt;/div&gt;
     &lt;!-- Content Ends --&gt;
 {% endblock %}
 
-{% block rightsidebar %}
-&lt;!-- Right Sidebar Starts --&gt;
-&lt;div id=&quot;rightsidebar&quot;&gt;
-    &lt;h3&gt;ADMIN&lt;/h3&gt;
-    &lt;ul&gt;
-        {% for entry in recententries %}
-        &lt;li&gt;&lt;a href=&quot;#&quot;&gt;{{ entry.title }} type={{ entry.entrytype }}&lt;/a&gt;&lt;/li&gt;
-        {% endfor %}
-    &lt;/ul&gt;
-    &lt;h3&gt;Tag Cloud&lt;/h3&gt;
-    &lt;ul&gt;
-        tags
-    &lt;/ul&gt;
-    &lt;h3&gt;Archives&lt;/h3&gt;
-    &lt;ul&gt;
-        archives
-    &lt;/ul&gt;
-    &lt;h3&gt;Blogs I Read&lt;/h3&gt;
-    &lt;ul&gt;
-        &lt;li&gt;&lt;a href=&quot;http://cccarey.wordpress.com&quot;&gt;Christian's&lt;/a&gt;&lt;/li&gt;
-        &lt;li&gt;&lt;a href=&quot;http://www.carlosgabaldon.com&quot;&gt;Carlos Gabaldon&lt;/a&gt;&lt;/li&gt;
-    &lt;/ul&gt;
-    &lt;h3&gt;Site Admin&lt;/h3&gt;
-    &lt;ul&gt;
-        &lt;li&gt;&lt;a href=&quot;/admin/entry/list/post&quot;&gt;Admin Logon&lt;/a&gt;&lt;/li&gt;
-    &lt;/ul&gt;
-&lt;/div&gt;
-&lt;!-- Right Sidebar Ends --&gt;
-{% endblock %}
\ No newline at end of file</diff>
      <filename>views/admin.html</filename>
    </modified>
    <modified>
      <diff>@@ -7,7 +7,7 @@
 &lt;script type=&quot;text/javascript&quot; src=&quot;/static/ui.draggable.js&quot;&gt;&lt;/script&gt;
 &lt;script type=&quot;text/javascript&quot; src=&quot;/static/ui.sortable.js&quot;&gt;&lt;/script&gt;
 &lt;script type=&quot;text/javascript&quot; src=&quot;/static/jquery.form.js&quot;&gt;&lt;/script&gt;
-&lt;script type=&quot;text/javascript&quot; src=&quot;/static/jquery-uixx.min.js&quot;&gt;&lt;/script&gt;
+&lt;!--&lt;script type=&quot;text/javascript&quot; src=&quot;/static/jquery-ui.min.js&quot;&gt;&lt;/script&gt;--&gt;
 &lt;script type=&quot;text/javascript&quot; src=&quot;/static/admin.js&quot;&gt;&lt;/script&gt;
 
 {% endblock %}
@@ -16,10 +16,46 @@
     &lt;li class=&quot;page_item page-item-2&quot;&gt;&lt;a href=&quot;/admin/entry/list/post&quot; title=&quot;Write&quot;&gt;Posts&lt;/a&gt;&lt;/li&gt;
     &lt;li class=&quot;page_item page-item-2&quot;&gt;&lt;a href=&quot;/admin/links/blogroll&quot; title=&quot;Blogroll&quot;&gt;Blogroll&lt;/a&gt;&lt;/li&gt;
     &lt;li class=&quot;page_item page-item-2&quot;&gt;&lt;a href=&quot;/admin/entry/list/page&quot; title=&quot;Pages&quot;&gt;Pages&lt;/a&gt;&lt;/li&gt;
-    &lt;li class=&quot;page_item page-item-2&quot;&gt;&lt;a href=&quot;/admin/setup&quot; title=&quot;About&quot;&gt;configuration&lt;/a&gt;&lt;/li&gt;
+    &lt;li class=&quot;page_item page-item-2&quot;&gt;&lt;a href=&quot;/admin/setup&quot; title=&quot;About&quot;&gt;Configuration&lt;/a&gt;&lt;/li&gt;
     &lt;li class=&quot;page_item page-item-2&quot; style=&quot;float:right;&quot;&gt;&lt;a href=&quot;{{ url }}&quot; title=&quot;About&quot;&gt;{{ url_linktext }}&lt;/a&gt;&lt;/li&gt;
     &lt;div class=&quot;clear&quot;&gt;&lt;/div&gt;
 &lt;/ul&gt;
 &lt;span id=&quot;hiddenmessage&quot; style=&quot;visibilityx:hidden;displayx:none;margin:0 40 0 0;&quot; &gt;&lt;/span&gt;
 
 {% endblock %}
+
+{% block rightsidebar %}
+&lt;!-- Right Sidebar Starts --&gt;
+&lt;div id=&quot;rightsidebar&quot;&gt;
+    &lt;h3&gt;ADMIN&lt;/h3&gt;
+    &lt;ul&gt;
+        {% for entry in recententries %}
+        &lt;li&gt;&lt;a href=&quot;#&quot;&gt;{{ entry.title }} type={{ entry.entrytype }}&lt;/a&gt;&lt;/li&gt;
+        {% endfor %}
+    &lt;/ul&gt;
+    &lt;div class=&quot;actionbar&quot; style=&quot;heightxx:34px; &quot;&gt;
+        &lt;div class=&quot;boxlinks&quot;  style=&quot;margin-top:-4px;&quot;&gt;
+            &lt;ul class=&quot;boxlink&quot;&gt;
+                &lt;li style=&quot;list-style-type:none;&quot;&gt;&lt;a href=&quot;/admin/entry/post&quot; id=&quot;addpost&quot; objid=&quot;&quot;&gt;
+                    &lt;img  alt=&quot;Add New Post&quot; src=&quot;/static/images/icon_add.png&quot; style=&quot;vertical-align: bottom;&quot; border=&quot;0&quot; /&gt;
+                    Add New Post&lt;/a&gt;&lt;/li&gt;
+            &lt;/ul&gt;
+        &lt;/div&gt;
+    &lt;/div&gt;
+    &lt;div class=&quot;actionbar&quot; style=&quot;heightxx:34px; &quot;&gt;
+        &lt;div class=&quot;boxlinks&quot;  style=&quot;margin-top:-4px;&quot;&gt;
+            &lt;ul&gt;
+                &lt;li style=&quot;list-style-type:none;&quot;&gt;&lt;a href=&quot;/admin/entry/page&quot; id=&quot;addpage&quot; objid=&quot;&quot;&gt;
+                    &lt;img  alt=&quot;Add New Page&quot; src=&quot;/static/images/icon_add.png&quot; style=&quot;vertical-align: bottom;&quot; border=&quot;0&quot; /&gt;
+                    Add New Page&lt;/a&gt;&lt;/li&gt;
+            &lt;/ul&gt;
+        &lt;/div&gt;
+    &lt;/div&gt;
+    &lt;br /&gt;
+    &lt;h3&gt;Site Admin&lt;/h3&gt;
+    &lt;ul&gt;
+        &lt;li&gt;&lt;a href=&quot;/admin/entry/list/post&quot;&gt;Admin Logon&lt;/a&gt;&lt;/li&gt;
+    &lt;/ul&gt;
+&lt;/div&gt;
+&lt;!-- Right Sidebar Ends --&gt;
+{% endblock %}</diff>
      <filename>views/admin_base.html</filename>
    </modified>
    <modified>
      <diff>@@ -2,9 +2,9 @@
 &lt;html xmlns=&quot;http://www.w3.org/1999/xhtml&quot;&gt;
 &lt;head profile=&quot;http://gmpg.org/xfn/11&quot;&gt;
     &lt;title&gt;{% block title %} {{ blog.title }}{% endblock %}&lt;/title&gt;
-    &lt;meta name=&quot;generator&quot; content=&quot;GAEBlog&quot; /&gt;
+    &lt;meta name=&quot;generator&quot; content=&quot;PotlatchBlog&quot; /&gt;
     &lt;link rel=&quot;stylesheet&quot; href=&quot;/static/style.css&quot; type=&quot;text/css&quot; media=&quot;screen&quot; /&gt;
-    &lt;link rel=&quot;alternate&quot; type=&quot;application/rss+xml&quot; title=&quot;{{ blog.title }}&quot; href=&quot;/rss&quot; /&gt;
+    &lt;link rel=&quot;alternate&quot; type=&quot;application/rss+atom&quot; title=&quot;{{ blog.title }}&quot; href=&quot;/atom&quot; /&gt;
     &lt;link rel=&quot;pingback&quot; href=&quot;/pingback&quot; /&gt;
     {% block head_javascript %}{% endblock %}
 &lt;/head&gt;
@@ -18,7 +18,7 @@
             &lt;input name=&quot;domains&quot; type=&quot;hidden&quot; value=&quot;{{ blog.baseurl }}&quot;/&gt;
             &lt;input name=&quot;sitesearch&quot; type=&quot;hidden&quot; value=&quot;{{ blog.baseurl }}&quot;/&gt;
         &lt;/form&gt;
-        &lt;a href=&quot;/rss&quot; title=&quot;Subscribe to {{ blog.title }} RSS feed&quot;&gt;Subscribe to my RSS feed &lt;img src=&quot;/static/images/feed-icon-16x16.png&quot; width=&quot;16&quot; height=&quot;16&quot; border=&quot;0&quot; title=&quot;Subscribe to Blog's RSS feed&quot; alt=&quot;RSS&quot;/&gt;&lt;/a&gt;
+        &lt;a href=&quot;/atom&quot; title=&quot;Subscribe to {{ blog.title }} RSS feed&quot;&gt;Subscribe to my RSS feed &lt;img src=&quot;/static/images/feed-icon-16x16.png&quot; width=&quot;16&quot; height=&quot;16&quot; border=&quot;0&quot; title=&quot;Subscribe to Blog's RSS feed&quot; alt=&quot;RSS&quot;/&gt;&lt;/a&gt;
         &lt;div class=&quot;clear&quot;&gt;&lt;/div&gt;
     &lt;/div&gt;
 &lt;/div&gt;</diff>
      <filename>views/base.html</filename>
    </modified>
    <modified>
      <diff>@@ -49,27 +49,31 @@
             &lt;div class=&quot;meta&quot;&gt;
                 &lt;ul&gt;
                 &lt;li&gt;Written by &lt;a href=&quot;#&quot; title=&quot;Posts by #&quot;&gt;{{ entry.author.nickname }}&lt;/a&gt;&lt;/li&gt;
-                &lt;li&gt;&lt;a href=&quot;#comments&quot; title=&quot;Read what people are saying&quot;&gt;Read the comments&lt;/a&gt;&lt;/li&gt;
+                &lt;!--&lt;li&gt;&lt;a href=&quot;#comments&quot; title=&quot;Read what people are saying&quot;&gt;Read the comments&lt;/a&gt;&lt;/li&gt;--&gt;
                 &lt;/ul&gt;
             &lt;/div&gt;
         
             &lt;!-- Post Starts --&gt;
             &lt;div class=&quot;post&quot; class=&quot;post-9&quot;&gt;
-                {{ entry.content|escape }}
+                {{ entry.content }}
             &lt;/div&gt;
             &lt;div class=&quot;meta&quot;&gt;
                 tags: 
                 {% for tag in entry.tags %}
-                    &lt;a href=&quot;/entry/tags/{{ tag }}&quot; title=&quot;View all posts in #&quot; rel=&quot;category tag&quot;&gt;{{ tag }}&lt;/a&gt;, 
+                    &lt;a href=&quot;/tag/{{ tag }}&quot; title=&quot;View all posts in #&quot; rel=&quot;category tag&quot;&gt;{{ tag }}&lt;/a&gt;{% if not forloop.last %},{% endif %} 
                 {% endfor %}
                 
             &lt;/div&gt;
             &lt;div class=&quot;commentmeta&quot;&gt;
-                &lt;a href=&quot;#comments&quot; title=&quot;Comment on Demiauce Comment System&quot;&gt;3 people commented already&lt;/a&gt;
+                {% if entry.commentcount %}
+                    &lt;a href=&quot;#comments&quot; title=&quot;Comment on Demiauce Comment System&quot;&gt;{{ entry.commentcount }} comments&lt;/a&gt;
+                {% else %} 
+                
+                {% endif %}
+                
             &lt;/div&gt;
         &lt;!-- Post Ends --&gt;
     {% endfor %}
-        NAVIGATION.php
     &lt;/div&gt;
     &lt;!-- Content Ends --&gt;
 {% endblock %}
\ No newline at end of file</diff>
      <filename>views/index.html</filename>
    </modified>
    <modified>
      <diff>@@ -51,33 +51,3 @@
     &lt;/div&gt;
     &lt;!-- Content Ends --&gt;
 {% endblock %}
-
-{% block rightsidebar %}
-&lt;!-- Right Sidebar Starts --&gt;
-&lt;div id=&quot;rightsidebar&quot;&gt;
-    &lt;h3&gt;ADMIN&lt;/h3&gt;
-    &lt;ul&gt;
-        {% for entry in recententries %}
-        &lt;li&gt;&lt;a href=&quot;#&quot;&gt;{{ entry.title }} type={{ entry.entrytype }}&lt;/a&gt;&lt;/li&gt;
-        {% endfor %}
-    &lt;/ul&gt;
-    &lt;h3&gt;Tag Cloud&lt;/h3&gt;
-    &lt;ul&gt;
-        tags
-    &lt;/ul&gt;
-    &lt;h3&gt;Archives&lt;/h3&gt;
-    &lt;ul&gt;
-        archives
-    &lt;/ul&gt;
-    &lt;h3&gt;Blogs I Read&lt;/h3&gt;
-    &lt;ul&gt;
-        &lt;li&gt;&lt;a href=&quot;http://cccarey.wordpress.com&quot;&gt;Christian's&lt;/a&gt;&lt;/li&gt;
-        &lt;li&gt;&lt;a href=&quot;http://www.carlosgabaldon.com&quot;&gt;Carlos Gabaldon&lt;/a&gt;&lt;/li&gt;
-    &lt;/ul&gt;
-    &lt;h3&gt;Site Admin&lt;/h3&gt;
-    &lt;ul&gt;
-        &lt;li&gt;&lt;a href=&quot;/admin/entry/list/post&quot;&gt;Admin Logon&lt;/a&gt;&lt;/li&gt;
-    &lt;/ul&gt;
-&lt;/div&gt;
-&lt;!-- Right Sidebar Ends --&gt;
-{% endblock %}
\ No newline at end of file</diff>
      <filename>views/linkadmin.html</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,13 @@
 {% extends &quot;_base_public.html&quot; %}
 
+{% block title %} 
+{% if entries %}
+    {% for entry in entries %}
+        {{ entry.title }} 
+    {% endfor %} on
+{% endif %}
+{{ blog.title }}
+{% endblock %}
 
 {% block content %}
 &lt;h1&gt;{{ section.title }}&lt;/h1&gt;
@@ -13,7 +21,7 @@
         
             &lt;!-- Post Starts --&gt;
             &lt;div class=&quot;post&quot; class=&quot;post-9&quot;&gt;
-                {{ entry.content|escape }}
+                {{ entry.content }}
             &lt;/div&gt;
         &lt;!-- Post Ends --&gt;
     {% endfor %}</diff>
      <filename>views/page.html</filename>
    </modified>
    <modified>
      <diff>@@ -52,15 +52,15 @@
                     &lt;/fieldset&gt;
                 &lt;/div&gt;
                 &lt;div class=&quot;optional&quot;&gt;
-                    &lt;label for=&quot;area1&quot;&gt;Description:&lt;/label&gt;
+                    &lt;label for=&quot;area1&quot;&gt;Footer1:&lt;/label&gt;
                     &lt;textarea name=&quot;area1&quot; rows=&quot;4&quot; cols=&quot;60&quot; class=&quot;wide&quot;&gt;{{ blogedit.area1 }}&lt;/textarea&gt;
                 &lt;/div&gt;
                 &lt;div class=&quot;optional&quot;&gt;
-                    &lt;label for=&quot;area2&quot;&gt;Description:&lt;/label&gt;
+                    &lt;label for=&quot;area2&quot;&gt;Footer2:&lt;/label&gt;
                     &lt;textarea name=&quot;area2&quot; rows=&quot;4&quot; cols=&quot;60&quot; class=&quot;wide&quot;&gt;{{ blogedit.area2 }}&lt;/textarea&gt;
                 &lt;/div&gt;
                 &lt;div class=&quot;optional&quot;&gt;
-                    &lt;label for=&quot;area3&quot;&gt;Description:&lt;/label&gt;
+                    &lt;label for=&quot;area3&quot;&gt;Footer3:&lt;/label&gt;
                     &lt;textarea name=&quot;area3&quot; rows=&quot;4&quot; cols=&quot;60&quot; class=&quot;wide&quot;&gt;{{ blogedit.area3 }}&lt;/textarea&gt;
                 &lt;/div&gt;
             &lt;/fieldset&gt;</diff>
      <filename>views/setup.html</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>a087228a372b690d1c0985c766dec2aa77a692f0</id>
    </parent>
  </parents>
  <author>
    <name>Aaron Raddon</name>
    <email>aeraddon@Macintosh-6.local</email>
  </author>
  <url>http://github.com/araddon/potlatchblog/commit/a100c64b422a69f4f81556e9b038f9af3f6a4dcf</url>
  <id>a100c64b422a69f4f81556e9b038f9af3f6a4dcf</id>
  <committed-date>2008-05-10T14:26:20-07:00</committed-date>
  <authored-date>2008-05-10T14:26:20-07:00</authored-date>
  <message>adding atom xml and other cleanups</message>
  <tree>07b0054954f795f4e6cef532da73d6028bee4404</tree>
  <committer>
    <name>Aaron Raddon</name>
    <email>aeraddon@Macintosh-6.local</email>
  </committer>
</commit>
