1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
{%extends "base.html"%}
{%block html_lang%}en{%endblock html_lang%}
{%block head_title%}Index{%endblock head_title%}
{%block head_description%}My personal space where I post all my drawings, sketches and more art related stuff.{%endblock head_description%}
{%block head_og%}
<meta property="og:title" content="Index -- {{config.get("info", "title")}}"/>
<meta property="og:type" content="article"/>
<meta property="og:url" content="{{config.get("url", "main")}}/index.html"/>
<meta property="og:image" content="{{config.get("url", "static")}}{{config.get("url", "default_image")}}"/>
<meta property="og:description" content="My personal space where I post all my drawings, sketches, and more art related stuff."/>
<meta property="og:locale" content="en"/>
<meta property="og:site_name" content="{{config.get("info", "title")}}"/>
{%endblock head_og%}
{%block content%}
<h1>Index -- {{config.get("info", "title")}}</h1>
<p>
Here is where I will post all of my drawings, sketches and more art related stuff. Right now this is managed similar to the <a href="https://blog.luevano.xyz" alt="Luévano's Blog">blog</a>, but more "gallery" oriented. The structure is kind of a 3-level zoom, where you see all the images in this index (or on a tag index), then you see the whole image in its separate link with additional information and then you can see the raw image itself.
</p>
<p>
Get the RSS feed: <a target="_blank" href="{{config.get("url", "main")}}/rss.xml">{{config.get("url", "main")}}/rss.xml</a>
</p>
{%import "tag_list.html" as tag_list%}
{{tag_list.print(all_tags)}}
{%import "page_list.html" as page_list%}
{{page_list.print(all_pages)}}
{%endblock content%}
|