Compare commits

...

3 Commits

4 changed files with 18 additions and 9 deletions

View File

@@ -17,6 +17,9 @@ install-dep:
clean:
@rm -r ./dist ./build
publish:
@cd ./outbox && python3 -m http.server
install:
ifeq ($(USER), root)
@cp ./dist/main /usr/local/bin/blog

View File

@@ -1,12 +1,13 @@
import glob
import shutil
import datetime
import datetime
import textwrap
from pathlib import Path
from blog.page import Page
from blog.config import Config
from jinja2 import Environment, FileSystemLoader, Template
class Blog:
def __init__(self, conf: Config):
@@ -69,7 +70,8 @@ class Blog:
if updated < date:
updated = date
articles += textwrap.indent(
textwrap.dedent(f"""\
textwrap.dedent(
f"""\
<entry>
<title>{self.pages[filename].title}</title>
<link href="{self.conf.url}/pages/{filename}.html"/>
@@ -81,10 +83,13 @@ class Blog:
</div>
</content>
</entry>
"""),
" ")
"""
),
" ",
)
header = textwrap.dedent(f""" <?xml version="1.0" encoding="utf-8"?>
header = textwrap.dedent(
f""" <?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<title>{self.conf.title}</title>
<subtitle>{self.conf.presentation}</subtitle>
@@ -96,11 +101,12 @@ class Blog:
<email>{self.conf.author_mail}</email>
</author>
<id>urn:uuid:{self.conf.id}</id>
""")
"""
)
footer = "</feed>"
with open(Path(self.conf.outbox) / "atom.xml", 'w+') as rss_file:
with open(Path(self.conf.outbox) / "atom.xml", "w+") as rss_file:
rss_file.write(header + articles + footer)
def _copy_css(self):

View File

@@ -15,7 +15,7 @@ class Config:
"draft",
"author_name",
"author_mail",
"id"
"id",
}
def __init__(self, config_file: Path):

View File

@@ -20,7 +20,7 @@ def new_page(title: str, path: Path) -> Path:
f"""\
---
date: {today}
title: {title}
title: "{title}"
id: {id}
category:
tags: