from markdown.extensions.toc import TocExtension
import re
import mmap
+import time
+from git import Repo
app = Flask(__name__)
md = markdown.Markdown(extensions = ['meta', 'tables', 'footnotes', TocExtension(title = "Table of contents")])
template_string = open(f"{blog_path}/templates/{self.template}", "r").read()
- recent = get_recent(10)
+ history = get_history(6)
with open(f"{blog_path}/templates/sidebar.md", "r") as f:
sidebar = md.convert(f.read())
keywords = format_keywords,
content = self.content,
filename = self.filename,
- recent = recent,
+ history = history,
sidebar = sidebar
)
return title, abstract, keywords
+def get_history(n):
+ repo = Repo.init(blog_path)
+ commits = list(repo.iter_commits("main", max_count=n))
+ commits_string = ""
+ for c in commits:
+ time_string = time.strftime("%d %b %Y", time.gmtime(c.committed_date))
+ link = f"https://git.ozva.co.uk/?p=blog;a=commit;h={c.hexsha}"
+ commits_string += f"<a href='{link}'><b>⛁ {time_string}</b></a> <em>{c.message}</em><br>"
+
+ return "<p>" + commits_string + "</p>"
+
def get_recent(n):
modification_times = {file_name: getmtime(f"{blog_path}/pages/{file_name}") for file_name in listdir(f"{blog_path}/pages")}
pages = sorted(modification_times.items(), key=lambda x: x[1])[:n]
- content = "<ul>"
+ content = "<h3>Recent Posts</h3><ul>"
for page in pages:
title, abstract, keywords = get_metadata(page[0])
@app.route("/")
def homepage():
+ with open(f"{blog_path}/templates/homepage.md", "r") as f:
+ homepage = md.convert(f.read())
+
page = Page(
title = "Home",
abstract = "Blog and portfolio of Will Greenwood.",
keywords = [],
date = "",
+ content = homepage + get_recent(10),
template = "page.html"
)
return page.make()
-### Welcome to the blog
+*The structure of this site comes from the inherent structure of a Git repo. Links begining with ⛁ go to the Git site: <https://git.ozva.co.uk/> hosted on the [OzVa](https://www.ozva.co.uk) servers. Check both out to see some of my current projects.
-It's me Will
+
+
+
+### About
+
+My name is Will Greenwood, Radio producer. You can find my up-to-date CV [here](https://data.ozva.co.uk/cv.pdf). For examples of my work, see my [Soundcloud](https://soundcloud.com/will-greenwood-896086623) or check out the radio station I built: [XMDV Radio.](https://xmdv.ozva.co.uk). Additionally, see my contribution to OzVa on [their website.](https://www.ozva.co.uk)