more small changes on theme

This commit is contained in:
Marvin Steadfast 2017-05-25 11:38:51 +00:00
parent 8dc0a68a7a
commit dfc94f77da
10 changed files with 24 additions and 13 deletions

View File

@ -49,6 +49,7 @@ help:
@echo ' make rsync_upload upload the web site via rsync+ssh '
@echo ' make dropbox_upload upload the web site via Dropbox '
@echo ' make ftp_upload upload the web site via FTP '
@echo ' make ftp_upload_clean upload the clean web site via FTP '
@echo ' make s3_upload upload the web site via S3 '
@echo ' make cf_upload upload the web site via Cloud Files'
@echo ' make github upload the web site via gh-pages '
@ -104,6 +105,9 @@ dropbox_upload: publish
ftp_upload: publish
lftp ftp://$(FTP_USER):$(FTP_PASS)@$(FTP_HOST) -e "set ssl:verify-certificate no; mirror -R --ignore-time --no-perms --parallel=4 -e --use-cache -v $(OUTPUTDIR) $(FTP_TARGET_DIR); quit"
ftp_upload_clean: publish
lftp ftp://$(FTP_USER):$(FTP_PASS)@$(FTP_HOST) -e "set ssl:verify-certificate no; mirror -R --no-perms --parallel=4 -e -v $(OUTPUTDIR) $(FTP_TARGET_DIR); quit"
s3_upload: publish
s3cmd sync $(OUTPUTDIR)/ s3://$(S3_BUCKET) --acl-public --delete-removed --guess-mime-type

View File

@ -1,7 +1,7 @@
Title: Wolfsburg Unlimited
Date: 2016-05-24 09:26
Slug: wolfsburg-unlimited
Tags: wolfsburg, art
Tags: wolfsburg, art, essay
_Wolfsburg Unlimited - Eine Stadt als Weltlabor: 24.04.2016 - 11.09.2016 Kunstmuseum Wolfsburg_

View File

@ -86,8 +86,11 @@ CC_LICENSE = {'name': 'Creative Commons Attribution-ShareAlike',
'version': '4.0', 'slug': 'by-sa'}
MAIN_MENU = False
SOCIAL = (('twitter', 'https://twitter.com/xsteadfastx'),
('github', 'https://github.com/xsteadfastx'),
('flickr', 'https://www.flickr.com/photos/marvinxsteadfast/'),
('rss', SITEURL + '/feed/'),)
SOCIAL = (
('mastodon', 'https://mastodon.xsteadfastx.org/@marvin'),
('twitter', 'https://twitter.com/xsteadfastx'),
('github', 'https://github.com/xsteadfastx'),
('flickr', 'https://www.flickr.com/photos/marvinxsteadfast/'),
('rss', SITEURL + '/feed/'),
)
LINKS = (('Archive', SITEURL + '/archives.html'),)

View File

@ -8,16 +8,20 @@ a {
color: #546850;
}
h2 {
h1 {
color: #706f31;
margin-top: 75px;
margin-bottom: 0px;
}
h2 a {
h1 a {
text-decoration: none;
}
h2 {
color: #706f31;
}
hr {
border: solid #546850 1px;
}

View File

@ -3,7 +3,7 @@
{% block title %} - {{ article.title }}{% endblock %}
{% block content %}
<h2>{{ article.title }}</h2>
<h1>{{ article.title }}</h1>
<p class="post-meta">
Posted on {{ article.locale_date }}
{% if article.tags %}

View File

@ -3,7 +3,7 @@
{% block content %}
{% for article in articles_page.object_list %}
<h2><a href="{{ SITEURL }}/{{ article.url }}#{{ article.slug }}">{{ article.title }}</a></h2>
<h1><a href="{{ SITEURL }}/{{ article.url }}#{{ article.slug }}">{{ article.title }}</a></h1>
<p class="post-meta">
Posted on {{ article.locale_date }}
{% if article.tags %}

View File

@ -3,7 +3,7 @@
{% block title %} - {{ page.title }}{% endblock %}
{% block content %}
<h2>{{ page.title }}</h2>
<h1>{{ page.title }}</h1>
{{ page.content }}
{% endblock %}

View File

@ -8,7 +8,7 @@
{% endblock %}
{% block content %}
<h2>Search</h2>
<h1>Search</h1>
<form action="{{ SITEURL}}/pages/search.html">
<input type="text" value="" placeholder="Suchen" name="q" id="tipue_search_input" autocomplete="on" required>
<br>

View File

@ -3,7 +3,7 @@
{% block title %} - Tags{% endblock %}
{% block content %}
<h2>Tags for {{ SITENAME }}</h2>
<h1>Tags for {{ SITENAME }}</h1>
{%- for tag, articles in tags|sort %}
<li><a href="{{ SITEURL }}/{{ tag.url }}">{{ tag }}</a> ({{ articles|count }})</li>
{% endfor %}

View File

@ -50,7 +50,7 @@
- ipython[notebook]==2.4.1
- jinja2-slug
- markdown
- pelican==3.7
- pelican==3.7.1
- tzlocal
- virtualenv
become: yes