Compare commits

..

No commits in common. "ed93d0446bd2c62e00b0c8c7b62f692a3b002c95" and "4395dea1fd53b07cc2d520dc9236bf2e2f5a611c" have entirely different histories.

3 changed files with 7 additions and 5 deletions

View File

@ -81,7 +81,9 @@ def process_markdown_files():
page_url = page_url[:-len('index.html')]
html = markdown.markdown(text, extensions=md_extensions, output_format='html5')
output = template.format(title=title, content=html, page_url=page_url)
output = template.replace('__TITLE_GOES_HERE__', title)
output = output.replace('__CONTENT_GOES_HERE__', html)
output = output.replace('__PAGE_URL_GOES_HERE__', page_url)
os.makedirs(out_dirpath, exist_ok=True)
print_file(markdown_filename, out_fullpath)

View File

@ -39,7 +39,7 @@ body {
}
h2 {
padding-top: 24px;
padding-top: 36px;
}
#page-container {

View File

@ -5,9 +5,9 @@
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/png" href="/favicon.ico">
<link rel="canonical" href="https://www.mcmillen.dev/{page_url}">
<link rel="canonical" href="https://www.mcmillen.dev/__PAGE_URL_GOES_HERE__">
<title>{title}</title>
<title>__TITLE_GOES_HERE__</title>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Quicksand:wght@500;700&display=block" rel="stylesheet">
@ -28,7 +28,7 @@
</div>
<div class="content">
{content}
__CONTENT_GOES_HERE__
</div>
</div>