diff options
author | davidovski <david@davidovski.xyz> | 2022-05-23 22:34:48 +0100 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2022-05-23 22:34:48 +0100 |
commit | 6668d06bc46c6fad809baf4c6c0f49aedebf8fdd (patch) | |
tree | a7318e78c775286d582a830055a268ada38e6112 | |
parent | 02b68c9a0e6c5fc0dc8a04b5a9e110d95d505ecb (diff) |
removed hrs
-rw-r--r-- | build.py | 2 | ||||
-rw-r--r-- | templates/about.html | 3 | ||||
-rw-r--r-- | templates/page.html | 2 |
3 files changed, 2 insertions, 5 deletions
@@ -87,7 +87,7 @@ def make(): summary_templ = getTemplateHTML("summary.html") - summariesHTML = getTemplateHTML("about.html") + "\n<hr><ul>\n"+ "\n".join( + summariesHTML = getTemplateHTML("about.html") + "\n<ul>\n"+ "\n".join( [ formatEntry(summary_templ, page) .replace( diff --git a/templates/about.html b/templates/about.html index e586ceb..f73c87c 100644 --- a/templates/about.html +++ b/templates/about.html @@ -11,8 +11,5 @@ <img src="/images/remotecontrol.gif"> </div> </div> -<hr> -<hr> - <h2 class="header">blog posts</h2> diff --git a/templates/page.html b/templates/page.html index 0a0eeaf..208214c 100644 --- a/templates/page.html +++ b/templates/page.html @@ -33,8 +33,8 @@ <a color="#b5bd68" style="color: var(--green)" href="/rss.xml">rss</a> </div> </div> + <hr> - <hr> %content% </div> |