added minimo theme as submodule
This commit is contained in:
parent
40f651cf7f
commit
592cea3c48
3
.gitmodules
vendored
Normal file
3
.gitmodules
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
[submodule "themes/minimo"]
|
||||
path = themes/minimo
|
||||
url = https://git.abbiamoundominio.org/dan/minimo.git
|
1
themes/minimo
Submodule
1
themes/minimo
Submodule
|
@ -0,0 +1 @@
|
|||
Subproject commit 5638e7ba4561733f84de542a7771f10ee6cee158
|
|
@ -1,37 +0,0 @@
|
|||
body {
|
||||
font-family: "Courier New", Courier, monospace
|
||||
font-size: 100%;
|
||||
background-color: #F4F4E8;
|
||||
color: #333333;
|
||||
min-width: 400px;
|
||||
min-height: 200px;
|
||||
margin: 2% 2%;
|
||||
padding:0;
|
||||
height:98%;;
|
||||
margin-left: 33%;
|
||||
margin-right: 33%;
|
||||
}
|
||||
|
||||
a:link { color: #003399; text-decoration: none; }
|
||||
a:visited { color: #336699; text-decoration: none; }
|
||||
a:hover { color: #003399; background: #ff8c19; text-decoration: none; }
|
||||
|
||||
h1 a { color: inherit !important }
|
||||
h2 a { color: inherit !important }
|
||||
h3 a { color: inherit !important }
|
||||
h4 a { color: inherit !important }
|
||||
h5 a { color: inherit !important }
|
||||
h6 a { color: inherit !important }
|
||||
|
||||
#menu li {
|
||||
display: inline;
|
||||
}
|
||||
|
||||
#post-list {
|
||||
margin-bottom: 1em;
|
||||
margin-top: 1em;
|
||||
}
|
||||
|
||||
pre {
|
||||
margin: 2em 1em 2em 4em;
|
||||
}
|
|
@ -1,42 +0,0 @@
|
|||
{% extends "index.html" %}
|
||||
{% block title %}Archivio {{ SITENAME }}{% endblock %}
|
||||
{% block ogtitle %}Archivio {{ SITENAME }}{% endblock %}
|
||||
{% block ogurl %}{{ SITEURL }}/archives.html{%endblock%}
|
||||
{% block canonicalurl %}{{ SITEURL }}/archives.html{%endblock%}
|
||||
|
||||
{% block content %}
|
||||
<div class="span9">
|
||||
<section>
|
||||
<h1>{% block content_title %}Archivio per data{% endblock %}</h1>
|
||||
|
||||
{% for article in dates %}
|
||||
{% set this_year = article.date.strftime('%Y') %}
|
||||
|
||||
{% if this_year != prev_year %}
|
||||
<div class="row-fluid archive_row">
|
||||
<div class="span1 archive_year">{{ this_year }}</div>
|
||||
</div>
|
||||
{% endif %}
|
||||
{% if this_year != prev_year or this_month != prev_month %}
|
||||
<div class="row-fluid archive_row">
|
||||
<div class="offset1 span1 archive_month">{{ this_month }}</div>
|
||||
</div>
|
||||
{% endif %}
|
||||
<div class="row-fluid archive_row">
|
||||
{% if this_month != prev_month or this_day != prev_day %}
|
||||
<div class="offset1 span1 archive_day">
|
||||
{{ this_day }}
|
||||
</div>
|
||||
{% endif %}
|
||||
<div class="{% if this_year == prev_year and this_month == prev_month and this_day == prev_day %}offset2 {% endif %}span10">
|
||||
<dd><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a> <small>{{ article.category }}</small></dd>
|
||||
</div>
|
||||
</div>
|
||||
{% set prev_year = this_year %}
|
||||
{% set prev_month = this_month %}
|
||||
{% set prev_day = this_day %}
|
||||
{% endfor %}
|
||||
</section>
|
||||
</div>
|
||||
{% endblock %}
|
||||
|
|
@ -1,28 +0,0 @@
|
|||
{% extends "base.html" %}
|
||||
|
||||
{% block title %}{{ article.title|striptags }} | {{ SITENAME }}{% endblock %}
|
||||
{% block ogtitle %}{{ article.title|striptags }}{% endblock %}
|
||||
{% block ogurl %}{{ SITEURL }}/{{ article.url }}{%endblock%}
|
||||
{% block ogtype %}article{%endblock%}
|
||||
{% block canonicalurl %}{{ SITEURL }}/{{ article.url }}{%endblock%}
|
||||
|
||||
{% block content %}
|
||||
|
||||
<div class="span10 offset1">
|
||||
<section>
|
||||
<article>
|
||||
<header>
|
||||
<h1 class="entry-title">
|
||||
<a href="{{ SITEURL }}/{{ article.url }}" rel="bookmark"
|
||||
title="Permalink a {{ article.title|striptags }}">{{ article.title}}</a></h1>
|
||||
</header>
|
||||
|
||||
<div class="entry-content">
|
||||
{% include 'article_infos.html' %}
|
||||
{{ article.content }}
|
||||
</div>
|
||||
|
||||
</article>
|
||||
</section>
|
||||
</div>
|
||||
{% endblock %}
|
|
@ -1,25 +0,0 @@
|
|||
<footer class="post-info">
|
||||
{% if article.author %}
|
||||
<address class="vcard author">
|
||||
<a class="url fn" href="{{ SITEURL }}/{{ article.author.url }}">{{ article.author }}</a>
|
||||
</address>
|
||||
{% endif %}
|
||||
|
||||
data: {{ article.date.strftime('%d %B %Y') }}
|
||||
|
||||
<br>
|
||||
|
||||
categoria: <a href="{{ SITEURL }}/{{ article.category.url }}">{{ article.category }}</a>
|
||||
|
||||
<br>
|
||||
|
||||
{% if article.tags %}
|
||||
tag: {% for tag in article.tags %}
|
||||
<a href="{{ SITEURL }}/{{ tag.url }}">{{ tag }}</a>
|
||||
{% endfor %}
|
||||
{% endif %}
|
||||
|
||||
{% import 'translations.html' as translations with context %}
|
||||
{{ translations.translations_for(article) }}
|
||||
|
||||
</footer>
|
|
@ -1,5 +0,0 @@
|
|||
{% extends "index.html" %}
|
||||
{% block title %}{{ SITENAME }} - {{ author }} | {{ SITENAME }}{% endblock %}
|
||||
{% block ogtitle %}{{ SITENAME }} - {{ author }}{% endblock %}
|
||||
{% block ogurl %}{{ SITEURL }}/{{ author.url }}{%endblock%}
|
||||
{% block canonicalurl %}{{ SITEURL }}/{{ author.url }}{%endblock%}
|
|
@ -1,72 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="{{ DEFAULT_LANG }}">
|
||||
<head>
|
||||
{% block head %}
|
||||
<title>{% block title %}{{ SITENAME }}{% endblock title %}</title>
|
||||
<meta charset="utf-8" />
|
||||
<link rel="stylesheet" type="text/css" href="{{ SITEURL }}/theme/css/style.css" />
|
||||
{% if FEED_ALL_ATOM %}
|
||||
<link href="{{ FEED_DOMAIN }}/{{ FEED_ALL_ATOM }}" type="application/atom+xml" rel="alternate" title="{{ SITENAME }} Full Atom Feed" />
|
||||
{% endif %}
|
||||
{% if FEED_ALL_RSS %}
|
||||
<link href="{{ FEED_DOMAIN }}/{{ FEED_ALL_RSS }}" type="application/rss+xml" rel="alternate" title="{{ SITENAME }} Full RSS Feed" />
|
||||
{% endif %}
|
||||
{% if FEED_ATOM %}
|
||||
<link href="{{ FEED_DOMAIN }}/{{ FEED_ATOM }}" type="application/atom+xml" rel="alternate" title="{{ SITENAME }} Atom Feed" />
|
||||
{% endif %}
|
||||
{% if FEED_RSS %}
|
||||
<link href="{{ FEED_DOMAIN }}/{{ FEED_RSS }}" type="application/rss+xml" rel="alternate" title="{{ SITENAME }} RSS Feed" />
|
||||
{% endif %}
|
||||
{% if CATEGORY_FEED_ATOM and category %}
|
||||
<link href="{{ FEED_DOMAIN }}/{{ CATEGORY_FEED_ATOM|format(category.slug) }}" type="application/atom+xml" rel="alternate" title="{{ SITENAME }} Categories Atom Feed" />
|
||||
{% endif %}
|
||||
{% if CATEGORY_FEED_RSS and category %}
|
||||
<link href="{{ FEED_DOMAIN }}/{{ CATEGORY_FEED_RSS|format(category.slug) }}" type="application/rss+xml" rel="alternate" title="{{ SITENAME }} Categories RSS Feed" />
|
||||
{% endif %}
|
||||
{% if TAG_FEED_ATOM and tag %}
|
||||
<link href="{{ FEED_DOMAIN }}/{{ TAG_FEED_ATOM|format(tag.slug) }}" type="application/atom+xml" rel="alternate" title="{{ SITENAME }} Tags Atom Feed" />
|
||||
{% endif %}
|
||||
{% if TAG_FEED_RSS and tag %}
|
||||
<link href="{{ FEED_DOMAIN }}/{{ TAG_FEED_RSS|format(tag.slug) }}" type="application/rss+xml" rel="alternate" title="{{ SITENAME }} Tags RSS Feed" />
|
||||
{% endif %}
|
||||
{% endblock head %}
|
||||
</head>
|
||||
|
||||
<body id="index" class="home">
|
||||
<header id="banner" class="body">
|
||||
<h1><a href="{{ SITEURL }}/">{{ SITENAME }} <strong>{{ SITESUBTITLE }}</strong></a></h1>
|
||||
<img src="{{ SITELOGO }}" alt="logo" width="85" height="85" border="0">
|
||||
</header><!-- /#banner -->
|
||||
<nav id="menu"><ul>
|
||||
{% for title, link in MENUITEMS %}
|
||||
<li><a href="{{ link }}">{{ title }}</a></li>
|
||||
{% endfor %}
|
||||
{% if DISPLAY_PAGES_ON_MENU %}
|
||||
{% for p in pages %}
|
||||
<li{% if p == page %} class="active"{% endif %}><a href="{{ SITEURL }}/{{ p.url }}">{{ p.title }}</a></li>
|
||||
{% endfor %}
|
||||
{% else %}
|
||||
{% if DISPLAY_CATEGORIES_ON_MENU %}
|
||||
{% for cat, null in categories %}
|
||||
<li{% if cat == category %} class="active"{% endif %}><a href="{{ SITEURL }}/{{ cat.url }}">{{ cat }}</a></li>
|
||||
{% endfor %}
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
</ul></nav><!-- /#menu -->
|
||||
{% block content %}
|
||||
{% endblock %}
|
||||
|
||||
<footer id="contentinfo" class="body">
|
||||
<hr>
|
||||
<address id="about" class="vcard body">
|
||||
<small>
|
||||
unit hacklab 2019 - Alimentato da
|
||||
<a href="http://python.org">Python</a> e
|
||||
<a href="http://getpelican.com/">Pelican</a>, tema
|
||||
<a href="https://git.abbiamoundominio.org/dan/minimo">minimo</a>
|
||||
</small>
|
||||
</address><!-- /#about -->
|
||||
</footer><!-- /#contentinfo -->
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -1,19 +0,0 @@
|
|||
{% extends "index.html" %}
|
||||
{% block title %}Categorie di {{ SITENAME }}{% endblock %}
|
||||
{% block ogtitle %}Categorie di {{ SITENAME }}{% endblock %}
|
||||
{% block ogurl %}{{ SITEURL }}/categories.html{%endblock%}
|
||||
{% block canonicalurl %}{{ SITEURL }}/categories.html{%endblock%}
|
||||
|
||||
{% block content %}
|
||||
<div class="span9">
|
||||
<section>
|
||||
<h1>{% block content_title %}Categorie {% endblock %}</h1>
|
||||
|
||||
<dl>
|
||||
{% for category, articles in categories %}
|
||||
<dd><a href="{{ SITEURL }}/{{ category.url }}">{{ category }} ({{ articles|count }})</a></dd>
|
||||
{% endfor %}
|
||||
</dl>
|
||||
</section>
|
||||
</div>
|
||||
{% endblock %}
|
|
@ -1,6 +0,0 @@
|
|||
{% extends "archives.html" %}
|
||||
{% block title %}{{ SITENAME }} - {{ category }}{% endblock %}
|
||||
{% block content_title %} Ricerca per categoria: {{ category }}{% endblock %}
|
||||
{% block ogtitle %}{{ SITENAME }} - {{ category }}{% endblock %}
|
||||
{% block ogurl %}{{ SITEURL }}/{{ category.url }}{%endblock%}
|
||||
{% block canonicalurl %}{{ SITEURL }}/{{ category.url }}{%endblock%}
|
|
@ -1,74 +0,0 @@
|
|||
{% extends "base.html" %}
|
||||
{% block content_title %}{% endblock %}
|
||||
{% block ogtitle %}{{ SITENAME }}{% endblock %}
|
||||
{% block ogurl %}{{ SITEURL }}{%endblock%}
|
||||
{% block canonicalurl %}{{ SITEURL }}{%endblock%}
|
||||
|
||||
{% block content %}
|
||||
<div class="span9">
|
||||
{% if articles %}
|
||||
{% for article in articles_page.object_list %}
|
||||
{% if loop.length > 0 %}
|
||||
{% if loop.first %}
|
||||
<section>
|
||||
<ol id="posts-list" class="hfeed" start="{{ articles_paginator.per_page -1 }}">
|
||||
{% endif %}
|
||||
<article>
|
||||
<header>
|
||||
<h1 class="entry-title">
|
||||
<a href="{{ SITEURL }}/{{ article.url }}" rel="bookmark" title="Permalink: {{ article.title|striptags }}">
|
||||
{{ article.title }}
|
||||
</a>
|
||||
</h1>
|
||||
</header>
|
||||
<div class="entry-content">
|
||||
{% include 'article_infos.html' %}
|
||||
{{ article.summary }}
|
||||
<p class="readmore">
|
||||
<a class="btn btn-small btn-info" href="{{ SITEURL }}/{{ article.url }}">continua..</a>
|
||||
</p>
|
||||
</div>
|
||||
<hr/>
|
||||
</article>
|
||||
{% if loop.last %}
|
||||
</ol><!-- /#posts-list -->
|
||||
{% if loop.last and (articles_page.has_previous()
|
||||
or not articles_page.has_previous() and loop.length > 1) %}
|
||||
{% include 'pagination.html' %}
|
||||
{% endif %}
|
||||
</section><!-- /#content -->
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
{% else %}
|
||||
<section>
|
||||
<h2>Pages</h2>
|
||||
{% for page in PAGES %}
|
||||
<li><a href="{{ SITEURL }}/{{ page.url }}">{{ page.title }}</a></li>
|
||||
{% endfor %}
|
||||
</section>
|
||||
{% endif %}
|
||||
</div>
|
||||
{% endblock content %}
|
||||
|
||||
{% if LINKS %}
|
||||
<div>
|
||||
<h2>Links</h2>
|
||||
<ul>
|
||||
{% for name, link in LINKS %}
|
||||
<li><a href="{{ link }}">{{ name }}</a></li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</div><!-- /.Links -->
|
||||
{% endif %}
|
||||
{% if TAG_CLOUD_STEPS %}
|
||||
<div>
|
||||
<h2>Tags</h2>
|
||||
<ul id="cloud">
|
||||
{% for tag in tag_cloud %}
|
||||
<li class="tag-{{ tag.1 }}"><a href="{{ SITEURL }}/{{ tag.0.url }}">{{ tag.0 }}</a></li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</div>
|
||||
{% endif %}<!-- /.Tags -->
|
||||
</div>
|
|
@ -1,15 +0,0 @@
|
|||
{% extends "base.html" %}
|
||||
{% block title %}{{ page.title }} | {{ SITENAME }}{% endblock %}
|
||||
{% block ogtitle %}{{ page.title|striptags }}{% endblock %}
|
||||
{% block ogurl %}{{ SITEURL }}/{{ page.url }}{%endblock%}%}
|
||||
{% block canonicalurl %}{{ SITEURL }}/{{ page.url }}{%endblock%}
|
||||
|
||||
{% block content %}
|
||||
<section >
|
||||
<h1 class="entry-title">{{ page.title }}</h1>
|
||||
{% import 'translations.html' as translations with context %}
|
||||
{{ translations.translations_for(page) }}
|
||||
{{ page.content }}
|
||||
</section>
|
||||
{% endblock %}
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
{% extends "archives.html" %}
|
||||
{% block title %}{{ SITENAME }} - {{ tag }} | {{ SITENAME }}{% endblock %}
|
||||
{% block content_title %}Ricerca per tag: "{{ tag }}"{% endblock %}
|
||||
{% block ogtitle %}{{ SITENAME }} - {{ tag }}{% endblock %}
|
||||
{% block ogurl %}{{ SITEURL }}/{{ tag.url }}{%endblock%}
|
||||
{% block canonicalurl %}{{ SITEURL }}/{{ tag.url }}{%endblock%}
|
|
@ -1,19 +0,0 @@
|
|||
{% extends "index.html" %}
|
||||
{% block title %}Tags in {{ SITENAME }}{% endblock %}
|
||||
{% block ogtitle %}Tags in {{ SITENAME }}{% endblock %}
|
||||
{% block ogurl %}{{ SITEURL }}/tags.html{%endblock%}%}
|
||||
{% block canonicalurl %}{{ SITEURL }}/tags.html{%endblock%}
|
||||
|
||||
{% block content %}
|
||||
<div class="span9">
|
||||
<section>
|
||||
<h1>{% block content_title %}Tags{% endblock %}</h1>
|
||||
|
||||
<dl>
|
||||
{% for tag, articles in tags|sort %}
|
||||
<dd><a href="{{ SITEURL }}/{{ tag.url }}">{{ tag }} ({{ articles|count }})</a></dd>
|
||||
{% endfor %}
|
||||
</dl>
|
||||
</section>
|
||||
</div>
|
||||
{% endblock %}
|
|
@ -1,10 +0,0 @@
|
|||
{% macro translations_for(article) %}
|
||||
{% if article.translations %}
|
||||
<br>
|
||||
Translations:
|
||||
{% for translation in article.translations %}
|
||||
<a href="{{ SITEURL }}/{{ translation.url }}">{{ translation.lang }}</a>
|
||||
{% endfor %}
|
||||
{% endif %}
|
||||
{% endmacro %}
|
||||
|
Loading…
Reference in New Issue
Block a user