Silvio 6 years ago
parent
commit
464cd329e9
  1. 6
      pelicanconf.py
  2. 2
      publishconf.py
  3. 20
      themes/varia/static/css/main.css
  4. 0
      themes/varia/static/css/pygment.css
  5. 0
      themes/varia/static/fonts/LiberationMono.ttf
  6. 0
      themes/varia/static/fonts/cmunit.ttf
  7. 0
      themes/varia/static/fonts/cmunobx.ttf
  8. 0
      themes/varia/static/fonts/cmunorm.ttf
  9. 0
      themes/varia/static/fonts/cmunssdc.ttf
  10. 0
      themes/varia/static/fonts/cmuntb.ttf
  11. 0
      themes/varia/static/fonts/cmuntt.ttf
  12. 0
      themes/varia/static/fonts/cmuntx.ttf
  13. 0
      themes/varia/static/fonts/cmunvi.ttf
  14. 0
      themes/varia/static/fonts/cmunvt.ttf
  15. 0
      themes/varia/static/js/stars.js
  16. 0
      themes/varia/templates/archives.html
  17. 0
      themes/varia/templates/article.html
  18. 0
      themes/varia/templates/author.html
  19. 0
      themes/varia/templates/authors.html
  20. 16
      themes/varia/templates/base.html
  21. 0
      themes/varia/templates/categories.html
  22. 0
      themes/varia/templates/category.html
  23. 0
      themes/varia/templates/events_list.html
  24. 0
      themes/varia/templates/gosquared.html
  25. 35
      themes/varia/templates/index.html
  26. 9
      themes/varia/templates/page.html
  27. 0
      themes/varia/templates/pagination.html
  28. 0
      themes/varia/templates/period_archives.html
  29. 15
      themes/varia/templates/syndication.html
  30. 0
      themes/varia/templates/tag.html
  31. 0
      themes/varia/templates/tags.html
  32. 0
      themes/varia/templates/translations.html

6
pelicanconf.py

@ -40,18 +40,18 @@ EXTRA_PATH_METADATA = {
'extra/htaccess': {'path': '.htaccess'}
}
THEME = 'themes/cetcat'
THEME = 'themes/varia'
THEME_STATIC_DIR = 'theme/'
I18N_SUBSITES = {
'en': {
'SITESUBTITLE':u'Centre for Everyday Technology',
'SITEURL':'varia.zone/en/',
'SITEURL':'varia.zone/en/',
'locale':'en_US.UTF-8'
},
'nl': {
'SITESUBTITLE':u'Centrum voor Alledaagse Technologie',
'SITEURL':'varia.zone/',
'SITEURL':'varia.zone/',
'locale':'nl.UTF-8'
}
}

2
publishconf.py

@ -10,7 +10,7 @@ import sys
sys.path.append(os.curdir)
from pelicanconf import *
RELATIVE_URLS = True
RELATIVE_URLS = False
DELETE_OUTPUT_DIRECTORY = True
# Following items are often useful when publishing

20
themes/cetcat/static/css/main.css → themes/varia/static/css/main.css

@ -40,7 +40,7 @@ body{
font-size: 16px;
line-height:1.8;
font-style: normal;
background-color: rgb(252, 255, 120);
background-color: rgba(252, 255, 120, .7);
color:black;
}
header {
@ -54,8 +54,8 @@ header {
}
#content.index header{
font-family: 'CMUconcrete';
font-size: 26px;
line-height: 1.6;
font-size: 22px;
line-height: 1.4;
letter-spacing: .035em;
}
#content.index header em{
@ -159,6 +159,9 @@ pre{
.summary p{
display: inline;
}
.summary.longread{
font-size: 150%;
}
.long-read .hentry{
width:calc(400px + 2em);
}
@ -181,7 +184,7 @@ pre{
font-size: 190%;
font-weight: bold;
line-height: 1.10;
margin:0;
margin:0 0 .5em 0;
}
.hentry .article-info .entry-title a{
text-decoration: none;
@ -189,14 +192,15 @@ pre{
/* date */
.event-details{
width: 100%;
font-family: 'CMUconcrete';
font-size: 12px;
margin:.5em 0 1em 0;
font-family: 'liberation';
font-size: 10px;
margin:.5em 0 0;
}
/* ascii art styling */
.hentry pre{
font-size: 14.4px;
font-weight: normal;
clear:both; /*to prevent the ascii to break up*/
}
/* featured image */
.hentry .article-info .featured-image img{
@ -246,7 +250,7 @@ pre{
}
.entry-content-container, #page-content-container{
width: calc(100% - 285px);
background-color: rgba(255,255,0,.3);
/*background-color: rgba(255,255,0,.3);*/
float: right;
padding:30px;
margin-bottom:25px;

0
themes/cetcat/static/css/pygment.css → themes/varia/static/css/pygment.css

0
themes/cetcat/static/fonts/LiberationMono.ttf → themes/varia/static/fonts/LiberationMono.ttf

0
themes/cetcat/static/fonts/cmunit.ttf → themes/varia/static/fonts/cmunit.ttf

0
themes/cetcat/static/fonts/cmunobx.ttf → themes/varia/static/fonts/cmunobx.ttf

0
themes/cetcat/static/fonts/cmunorm.ttf → themes/varia/static/fonts/cmunorm.ttf

0
themes/cetcat/static/fonts/cmunssdc.ttf → themes/varia/static/fonts/cmunssdc.ttf

0
themes/cetcat/static/fonts/cmuntb.ttf → themes/varia/static/fonts/cmuntb.ttf

0
themes/cetcat/static/fonts/cmuntt.ttf → themes/varia/static/fonts/cmuntt.ttf

0
themes/cetcat/static/fonts/cmuntx.ttf → themes/varia/static/fonts/cmuntx.ttf

0
themes/cetcat/static/fonts/cmunvi.ttf → themes/varia/static/fonts/cmunvi.ttf

0
themes/cetcat/static/fonts/cmunvt.ttf → themes/varia/static/fonts/cmunvt.ttf

0
themes/cetcat/static/js/stars.js → themes/varia/static/js/stars.js

0
themes/cetcat/templates/archives.html → themes/varia/templates/archives.html

0
themes/cetcat/templates/article.html → themes/varia/templates/article.html

0
themes/cetcat/templates/author.html → themes/varia/templates/author.html

0
themes/cetcat/templates/authors.html → themes/varia/templates/authors.html

16
themes/cetcat/templates/base.html → themes/varia/templates/base.html

@ -1,18 +1,16 @@
<!DOCTYPE html>
<html lang="{{ DEFAULT_LANG }}">
<head>
{% block head %}
<title>{% block title %}{{ SITENAME }} {{SITESUBTITLE}}{% endblock title %}</title>
<meta charset="utf-8" />
{% block head %}
<title>{% block title %}{{ SITENAME }} {{SITESUBTITLE}}{% endblock title %}</title>
<meta charset="utf-8" />
<link rel="icon" href="{{ SITEURL}}/favicon.ico" type="image/x-icon">
<link rel="shortcut icon" href="{{ SITEURL }}/favicon.ico" type="image/x-icon">
<link rel="shortcut icon" href="{{ SITEURL }}/favicon.ico" type="image/x-icon">
{% from 'syndication.html' import syndication with context %}
{{ syndication(article) }}
<link rel="stylesheet" type="text/css" href="/{{ THEME_STATIC_DIR }}css/pygment.css" />
<link rel="stylesheet" type="text/css" href="/{{ THEME_STATIC_DIR }}css/{{ CSS_FILE }}" />
{% endblock head %}
<link rel="stylesheet" type="text/css" href="/{{ THEME_STATIC_DIR }}css/pygment.css" />
<link rel="stylesheet" type="text/css" href="/{{ THEME_STATIC_DIR }}css/{{ CSS_FILE }}" />
{% endblock head %}
</head>
<body id="index" class="home">

0
themes/cetcat/templates/categories.html → themes/varia/templates/categories.html

0
themes/cetcat/templates/category.html → themes/varia/templates/category.html

0
themes/cetcat/templates/events_list.html → themes/varia/templates/events_list.html

0
themes/cetcat/templates/gosquared.html → themes/varia/templates/gosquared.html

35
themes/cetcat/templates/index.html → themes/varia/templates/index.html

@ -19,24 +19,26 @@
<article class="hentry {{article.category}}">
{% endif %}
<div class="article-info">
<span class="entry-title"><a href="{{ article.url }}" rel="bookmark" title="Permalink to {{ article.title|striptags }}">{{ article.title }}</a></span>
<div class="event-details">
{% if article.event_start %}
<div class="entry-title">
<a href="{{ article.url }}" rel="bookmark" title="Permalink to {{ article.title|striptags }}">{{ article.title }}</a>
</div>
<div class="featured-image {{past}}">
{% if article.featured_image %}
<a href="{{ article.url }}"><img src="{{ article.featured_image }}"></a>
{% endif %}
</div>
{% if article.event_start %}
<div class="event-details">
{{ article.event_start }}
{% set past = '' %}
{% if article.event_start < article.date.now() %}
{% set past = ' past-event' %}
{% endif %}
{% endif %}
</div>
<div class="featured-image {{past}}">
{% if article.featured_image %}
<img src="{{ article.featured_image }}">
{% endif %}
</div>
</div>
{% endif %}
</div>
<div class="summary">{{ article.summary }}
<div class="summary {{ article.category }}">{{ article.summary }}
<span>
<a href="{{ article.url }}">
{% if DEFAULT_LANG == 'en' %}
@ -47,6 +49,17 @@
</a>
</span>
</div>
<!-- <div class="summary {{ article.category }}">{{ article.summary }}
<span>
<a href="{{ article.url }}">
{% if DEFAULT_LANG == 'en' %}
read more
{% elif DEFAULT_LANG == 'nl' %}
lees meer
{% endif %}
</a>
</span>
</div> -->
<div class="separator"><hr></div>
<div class="post-info">
{% if article.category %}

9
themes/cetcat/templates/page.html → themes/varia/templates/page.html

@ -1,6 +1,15 @@
{% extends "base.html" %}
{% block title %}{{ page.title }}{%endblock%}
{% block content %}
<section id="content" class="index">
<header id="banner">
{% for p in pages %}
{% if p.title == 'header' %}
<div id="title">{{ p.content }}</div>
{% endif %}
{% endfor %}
</header>
</section>
<div id="page-content">
{{ page.content }}

0
themes/cetcat/templates/pagination.html → themes/varia/templates/pagination.html

0
themes/cetcat/templates/period_archives.html → themes/varia/templates/period_archives.html

15
themes/cetcat/templates/syndication.html → themes/varia/templates/syndication.html

@ -5,7 +5,7 @@
{# Thumbnail image to show when homepage is shared on social media. It also
serves as the default image for posts whose featured_image is not set. #}
{% if not FEATURED_IMAGE %}
{% set FEATURED_IMAGE = '' %}
{% set FEATURED_IMAGE = 'https://varia.zone/images/de_varia.png' %}
{% else %}
{% set FEATURED_IMAGE = FEATURED_IMAGE %}
{% endif %}
@ -28,9 +28,16 @@ serves as the default image for posts whose featured_image is not set. #}
<meta name="twitter:title" content="{{ article.title|striptags|e }} {%if article.subtitle %} - {{ article.subtitle|striptags|e }} {% endif %}">
<meta name="twitter:description" content="{{article.description|striptags|e}}">
{% if article.featured_image %}
<meta property="og:image" content="{{SITEURL}}{{article.featured_image}}" />
<meta property="og:image:secure_url" content="{{SITEURL}}{{article.featured_image}}" />
<meta name="twitter:image" content="{{SITEURL}}{{article.featured_image}}" >
{% if I18N_SUBSITES %}
{% for lang, url in I18N_SUBSITES.items() %}
{% if lang == 'en' %}
<!-- this is a dirty hack, FIXME -->
<meta property="og:image" content="http://varia.zone{{article.featured_image}}" />
<meta property="og:image:secure_url" content="https://varia.zone{{article.featured_image}}" />
<meta name="twitter:image" content="https://varia.zone{{article.featured_image}}" >
{% endif %}
{% endfor %}
{% endif %}
{% else %}
{% if FEATURED_IMAGE %}
<meta property="og:image" content="{{FEATURED_IMAGE}}" />

0
themes/cetcat/templates/tag.html → themes/varia/templates/tag.html

0
themes/cetcat/templates/tags.html → themes/varia/templates/tags.html

0
themes/cetcat/templates/translations.html → themes/varia/templates/translations.html

Loading…
Cancel
Save