generate articles with template

This commit is contained in:
Tykayn 2025-02-19 23:10:28 +01:00 committed by tykayn
parent 7c88fb7314
commit ac9659b08d
5 changed files with 191 additions and 3 deletions

View file

@ -0,0 +1,20 @@
<!-- site_head.html.jinja -->
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:image" content="{{ template_content['SITE_ICON'] }}">
<meta property="og:locale" content="{{ template_content['LOCALE'] }}">
<meta property="og:description" content="{{ template_content['BLOG_SUBTITLE'] }}">
<meta property="og:url" content="{{ template_content['NDD'] }}">
<meta property="og:site_name" content="{{ template_content['TITLE'] }}">
<link rel="alternate" type="application/atom+xml" title="{{ template_content['BLOG_TITLE'] }} » Flux" href="{{ template_content['NDD'] }}/feed/">
<link href="/style.css" rel="stylesheet">
<script src="main_script.js"></script>
<title>{{ template_content['TITLE'] }}</title>
<meta name="author" content="{{ template_content['AUTHOR'] }}">
<link rel="alternate" type="application/rss+xml" title="{{ template_content['BLOG_TITLE'] }} » Flux" href="{{ template_content['NDD'] }}/feed/">
<meta property="og:title" content="{{ template_content['PAGE_TITLE'] }}">
<meta name="description" content="{{ template_content['PAGE_TITLE'] }}">
<meta name="reply-to" content="{{ template_content['EMAIL'] }}">
<link rel="icon" type="{{ template_content['SITE_ICON_TYPE'] }}" href="{{ template_content['SITE_ICON'] }}">
</head>