summaryrefslogtreecommitdiff
path: root/art/plt/index.html
blob: a283ffc9e4c9409dca69c7c12c2adc9c7c452fb6 (plain)
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.title}}"/>
  <meta property="og:type" content="article"/>
  <meta property="og:url" content="{{config.url}}/index.html"/>
  <meta property="og:image" content="{{config.static_url}}{{config.default_image_url}}"/>
  <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.title}}"/>
{%endblock head_og%}
{%block content%}
  <h1>Index -- {{config.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.url}}/rss.xml">{{config.url}}/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%}