diff options
author | Aleksei <email@email.email> | 2022-07-14 17:27:45 +0300 |
---|---|---|
committer | Aleksei <email@email.email> | 2022-07-14 17:27:45 +0300 |
commit | 678b1af0dcb8315ca9d96bf8d24eb8732ace7a26 (patch) | |
tree | 9ad2f186201fd3584afa02684b0e316f8f099da8 /templates |
Diffstat (limited to 'templates')
-rw-r--r-- | templates/atom.tmpl | 27 | ||||
-rw-r--r-- | templates/main.tmpl | 109 |
2 files changed, 136 insertions, 0 deletions
diff --git a/templates/atom.tmpl b/templates/atom.tmpl new file mode 100644 index 0000000..22a6ed6 --- /dev/null +++ b/templates/atom.tmpl @@ -0,0 +1,27 @@ +<?xml version="1.0" encoding="utf-8"?> +<feed xmlns="http://www.w3.org/2005/Atom"> + <title type="text">{{ SITE_TITLE }}</title> + <id>{{ BASE_URL }}/atom.xml</id> + <updated>{{ DATE_FIRST_FORMATTED }}</updated> + <link href="{{ BASE_DOMAIN }}{{ BASE_URL }}/" /> + <link href="{{ BASE_DOMAIN }}{{ BASE_URL }}/atom.xml" rel="self" /> + <author> + <name>{{ AUTHOR_NAME }}</name> + <email>{{ AUTHOR_EMAIL }}</email> + </author> + <subtitle type="text">{{ SITE_TAGLINE }}</subtitle> + {% block listing %} + <entry> + <title type="text">{{ TITLE }}</title> + <id>{{ BASE_URL }}/post/{{ FILENAME }}/</id> + <updated>{{ DATE_FORMATTED }}</updated> + <published>{{ DATE_FORMATTED }}</published> + <link href="{{ BASE_DOMAIN }}{{ BASE_URL }}/post/{{ FILENAME }}/" /> + <author> + <name>{{ AUTHOR_NAME }}</name> + <email>{{ AUTHOR_EMAIL }}</email> + </author> + <content type="html"><![CDATA[{{ CONTENT }}]]></content> + </entry> + {% endblock %} +</feed> diff --git a/templates/main.tmpl b/templates/main.tmpl new file mode 100644 index 0000000..38ae020 --- /dev/null +++ b/templates/main.tmpl @@ -0,0 +1,109 @@ +<!DOCTYPE html> +<html lang="en"> + <head> + <meta charset="utf-8"> + <meta http-equiv="X-UA-Compatible" content="IE=edge"> + <meta name="viewport" content="width=device-width, initial-scale=1"> + <meta name="description" content="{{ SITE_TAGLINE }}"> + <title>{{ SITE_TITLE }}{% block entry %}{% ifdef TITLE %} - {{ TITLE }}{% endif %}{% endblock %}{% block listing_once %} - {{ SITE_TAGLINE }}{% endblock %}</title> + <link href="{{ BASE_URL }}/assets/bootstrap.min.css" rel="stylesheet" type="text/css"> + <link href="{{ BASE_URL }}/assets/custom.css" rel="stylesheet" type="text/css"> + <link href="{{ BASE_URL }}/atom.xml" rel="alternate" type="application/atom+xml" title="{{ SITE_TITLE }}" /> + </head> + <body> + <div class="navbar navbar-expand-lg fixed-top navbar-dark bg-primary"> + <div class="container"> + <a class="navbar-brand" href="{{ BASE_URL }}/">{{ SITE_TITLE }}</a> + <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarResponsive" aria-controls="navbarResponsive" aria-expanded="false" aria-label="Toggle navigation"> + <span class="navbar-toggler-icon"></span> + </button> + <div class="collapse navbar-collapse" id="navbarResponsive"> + <ul class="navbar-nav ml-auto"> + <!--<li class="nav-item{% if MENU == "blog" %} active{% endif %}"> + <a class="nav-link" href="{{ BASE_URL }}/">Blog</a> + </li>--> + <!--<li class="nav-item{% if MENU == "about" %} active{% endif %}"> + <a class="nav-link" href="{{ BASE_URL }}/about/">About</a> + </li> --> + <li class="nav-item"> + <a class="nav-link" href="{{ BASE_URL }}/contact/">Contact</a> + </li> + <li class="nav-item"> + <a class="nav-link" href="https://git.mekboy.ru">Cgit</a> + </li> + </ul> + </div> + </div> + </div> + <div class="container"> + <div class="row"> + <div class="col-md-12"> + {% block listing %} + <article> + <h3><a href="{{ BASE_URL }}/post/{{ FILENAME }}/">{{ TITLE }}</a></h3> + {{ CONTENT }} + <div class="metadata card bg-light mb-4"> + <div class="card-body p-2"> + <a href="{{ BASE_URL }}/post/{{ FILENAME }}/">Permalink</a><br/> + By <a href="mailto:{{ AUTHOR_EMAIL }}">{{ AUTHOR_NAME }}</a>, + published on + {% ifdef DATE_FORMATTED %}{{ DATE_FORMATTED }}<br />{% endif %} + <div style="background: ghostwhite; + border: 1px solid lightgray; "> + {% foreach TAGS %} + <a href="/tag/{{ FOREACH_ITEM }}/">{{ FOREACH_ITEM }}</a> + {% endforeach %} + </div> + </div> + </div> + </article> + {% endblock %} + {% block listing_once %} + <ul class="pagination justify-content-center"> + <li class="page-item{% ifndef PREVIOUS_PAGE %} disabled{% endif %}"> + <a class="page-link" href="{% ifdef PREVIOUS_PAGE %}{{ BASE_URL }}/page/{{ PREVIOUS_PAGE }}/{% else %}#{% endif %}"> + ← Newer + </a> + </li> + <li class="page-item{% ifndef NEXT_PAGE %} disabled{% endif %}"> + <a class="page-link" href="{% ifdef NEXT_PAGE %}{{ BASE_URL }}/page/{{ NEXT_PAGE }}/{% else %}#{% endif %}"> + Older → + </a> + </li> + </ul> + {% endblock %} + {% block entry %} + <article> + {% ifdef TITLE %}<h3>{{ TITLE }}</h3>{% endif %} + {{ CONTENT }} + {% ifdef IS_POST %} + <div class="metadata card bg-light mb-4"> + <div class="card-body p-2"> + Author: <a href="{{ BASE_URL }}/contact/">{{ AUTHOR_NAME }}</a><br /> + {% ifdef DATE_FORMATTED %}Published on: {{ DATE_FORMATTED }}<br />{% endif %} + <a href="{{ BASE_URL }}/post/{{ FILENAME }}/">Permalink</a> + </div> + </div> + {% endif %} + </article> + {% endblock %} + </div> + </div> + </div> + <hr> + <div class="container"> + <div class="row"> + <div class="col-md-12"> + <p class="copyright text-muted">© {{ AUTHOR_NAME }}. + Licensed under + <a href="https://creativecommons.org/licenses/by-nc-nd/4.0/"> + CC BY-NC-ND 4.0</a>. + Website powered by <strong><a href="https://blogc.rgm.io/">blogc</a></strong> {{ BLOGC_VERSION }} + </p> + </div> + </div> + </div> + <script src="{{ BASE_URL }}/assets/jquery.slim.min.js"></script> + <script src="{{ BASE_URL }}/assets/bootstrap.bundle.min.js"></script> + </body> +</html> |