mirror of
https://forge.chapril.org/tykayn/orgmode-to-gemini-blog
synced 2025-10-09 17:02:45 +02:00
generate articles with template
This commit is contained in:
parent
7c88fb7314
commit
ac9659b08d
5 changed files with 191 additions and 3 deletions
20
templates/html/site_head.html.jinja
Normal file
20
templates/html/site_head.html.jinja
Normal 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>
|
Loading…
Add table
Add a link
Reference in a new issue