diff options
author | David Luevano Alvarado <david@luevano.xyz> | 2022-12-13 00:11:16 -0600 |
---|---|---|
committer | David Luevano Alvarado <david@luevano.xyz> | 2022-12-13 00:11:16 -0600 |
commit | db4b3736d4f45137a733ce5eb1e50aec968ca1d2 (patch) | |
tree | a68b12886c8fbf9952c19a4f3cc7f819a6913bfe /pyssg.xyz/plt/root_index.html | |
parent | ca643e729e585d4077c0e84de97a020d04bf551a (diff) |
update pyssg.xyz site files
Diffstat (limited to 'pyssg.xyz/plt/root_index.html')
-rw-r--r-- | pyssg.xyz/plt/root_index.html | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/pyssg.xyz/plt/root_index.html b/pyssg.xyz/plt/root_index.html new file mode 100644 index 0000000..73cd8a0 --- /dev/null +++ b/pyssg.xyz/plt/root_index.html @@ -0,0 +1,31 @@ +{%extends "base.html"%} +{%block html_lang%}{{config['lang']}}{%endblock html_lang%} +{%block head_title%} +<title>{{config['title']}}</title> +{%endblock head_title%} +{%block head_description%} +<meta name="description" content="{{config['description']}}"/> +{%endblock head_description%} +{%block head_rss%} +<link rel="alternate" type="application/rss+xml" href="{{config['url']['main']}}/rss.xml" title="{{config['title']}} RSS"> +{%endblock head_rss%} +{%block head_og%} + <meta property="og:title" content="{{config['title']}}"/> + <meta property="og:type" content="article"/> + <meta property="og:url" content="{{config['url']['main']}}/index.html"/> + <meta property="og:image" content="{{config['url']['static']}}{{config['url']['default_image']}}"/> + <meta property="og:description" content="{{config['description']}}"/> + <meta property="og:locale" content="{{config['lang']}}"/> + <meta property="og:site_name" content="{{config['title']}}"/> +{%endblock head_og%} +{%block body_content%} + <h1>{{config['info']['title']}}</h1> + + <p> + Welcome to the official pyssg website. This is as of now serving as a testing ground when I'm making changes to it. + </p> + + <p> + Get the RSS feed: <a target="_blank" href="{{config['url']['main']}}/rss.xml">{{config['url']['main']}}/rss.xml</a> + </p> +{%endblock body_content%} |