first version

This commit is contained in:
theo lem 2020-04-29 20:17:21 +02:00
commit 84f42fc4aa
27 changed files with 507 additions and 0 deletions

4
.gitignore vendored Normal file
View File

@ -0,0 +1,4 @@
content/images/*
output/images/*
*.pyc

79
Makefile Normal file
View File

@ -0,0 +1,79 @@
PY?=python3
PELICAN?=pelican
PELICANOPTS=
LESSC=lessc
LESSFILES=themes/theo_lem/static/css/main.less
CSSFILES=themes/theo_lem/static/css/main.css
BASEDIR=$(CURDIR)
INPUTDIR=$(BASEDIR)/content
OUTPUTDIR=$(BASEDIR)/output
CONFFILE=$(BASEDIR)/pelicanconf.py
PUBLISHCONF=$(BASEDIR)/publishconf.py
DEBUG ?= 0
ifeq ($(DEBUG), 1)
PELICANOPTS += -D
endif
RELATIVE ?= 0
ifeq ($(RELATIVE), 1)
PELICANOPTS += --relative-urls
endif
help:
@echo 'Makefile for a pelican Web site '
@echo ' '
@echo 'Usage: '
@echo ' make html (re)generate the web site '
@echo ' make clean remove the generated files '
@echo ' make regenerate regenerate files upon modification '
@echo ' make publish generate using production settings '
@echo ' make serve [PORT=8000] serve site at http://localhost:8000'
@echo ' make serve-global [SERVER=0.0.0.0] serve (as root) to $(SERVER):80 '
@echo ' make devserver [PORT=8000] serve and regenerate together '
@echo ' make ssh_upload upload the web site via SSH '
@echo ' make rsync_upload upload the web site via rsync+ssh '
@echo ' '
@echo 'Set the DEBUG variable to 1 to enable debugging, e.g. make DEBUG=1 html '
@echo 'Set the RELATIVE variable to 1 to enable relative urls '
@echo ' '
html:
$(PELICAN) $(INPUTDIR) -o $(OUTPUTDIR) -s $(CONFFILE) $(PELICANOPTS)
clean:
[ ! -d $(OUTPUTDIR) ] || rm -rf $(OUTPUTDIR)
regenerate:
$(PELICAN) -r $(INPUTDIR) -o $(OUTPUTDIR) -s $(CONFFILE) $(PELICANOPTS)
serve:
ifdef PORT
$(PELICAN) -l $(INPUTDIR) -o $(OUTPUTDIR) -s $(CONFFILE) $(PELICANOPTS) -p $(PORT)
else
$(PELICAN) -l $(INPUTDIR) -o $(OUTPUTDIR) -s $(CONFFILE) $(PELICANOPTS)
endif
serve-global:
ifdef SERVER
$(PELICAN) -l $(INPUTDIR) -o $(OUTPUTDIR) -s $(CONFFILE) $(PELICANOPTS) -p $(PORT) -b $(SERVER)
else
$(PELICAN) -l $(INPUTDIR) -o $(OUTPUTDIR) -s $(CONFFILE) $(PELICANOPTS) -p $(PORT) -b 0.0.0.0
endif
devserver:
ifdef PORT
$(PELICAN) -lr $(INPUTDIR) -o $(OUTPUTDIR) -s $(CONFFILE) $(PELICANOPTS) -p $(PORT)
else
$(PELICAN) -lr $(INPUTDIR) -o $(OUTPUTDIR) -s $(CONFFILE) $(PELICANOPTS)
endif
publish:
$(LESSC) $(LESSFILES) $(CSSFILES)
$(PELICAN) $(INPUTDIR) -o $(OUTPUTDIR) -s $(PUBLISHCONF) $(PELICANOPTS)
.PHONY: html help clean regenerate serve serve-global devserver publish

28
output/archives.html Normal file
View File

@ -0,0 +1,28 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="utf-8">
<title>theo lem - Archives</title>
<link rel="stylesheet" href="theme/css/main.css" type="text/css" />
</head>
<body>
<div class='banner'>
<a href='index.html'>
<img class='banner-img' src='images/banner_croped.png'>
</a>
</div>
<div align='center' class='navbar'>
<a id='home' href='index.html'></a>
</div>
<div class='content'>
<h1>Archives for theo lem</h1>
<dl>
</dl>
</div>
</body>
</html>

0
output/authors.html Normal file
View File

0
output/categories.html Normal file
View File

View File

@ -0,0 +1,2 @@
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom"><title>theo lem</title><link href="https://theo-lem.org/" rel="alternate"></link><link href="https://theo-lem.org/feeds/all.atom.xml" rel="self"></link><id>https://theo-lem.org/</id><updated>2020-04-29T20:13:10Z</updated></feed>

30
output/index.html Normal file
View File

@ -0,0 +1,30 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="utf-8">
<title>theo lem</title>
<link rel="stylesheet" href="theme/css/main.css" type="text/css" />
</head>
<body>
<div class='banner'>
<a href='index.html'>
<img class='banner-img' src='images/banner_croped.png'>
</a>
</div>
<div align='center' class='navbar'>
<a id='home' href='index.html'></a>
</div>
<div class='content'>
<ul>TODO
<li>beautiful navbar</li>
<li>articles page</li>
</ul>
</div>
</body>
</html>

0
output/tags.html Normal file
View File

30
output/theme/css/main.css Normal file
View File

@ -0,0 +1,30 @@
* {
background-color: white;
font-family: 'Courier New', Courier, monospace;
}
.navbar {
font-size: 1.5em;
width: 100%;
height: 10px;
border-right-color: black;
background-color: white;
margin-top: 30px;
border-bottom: solid;
border-width: 1px;
}
.banner {
height: 530px;
border: solid;
border-width: 1px;
}
.banner-img {
width: 100%;
}
.content {
margin-top: 50px;
margin-left: 15%;
}
.article-anchor {
padding-left: 10px;
padding-right: 10px;
}

View File

@ -0,0 +1,42 @@
@navbar-width:100%;
@navbar-height: 10px;
@banner-height: 530px;
@banner-width: 100%;
* {
background-color: white;
font-family: 'Courier New', Courier, monospace;
}
.navbar {
font-size: 1.5em;
width: @navbar-width;
height: @navbar-height;
border-width: 1px;
border-right-color: black;
background-color: white;
margin-top: 30px;
border-bottom: solid;
border-width: 1px;
}
.banner {
height: @banner-height;
border: solid;
border-width: 1px;
}
.banner-img {
width: @banner-width;
}
.content {
margin-top: @navbar-height + 40px;
margin-left: 15%;
}
.article-anchor {
padding-left: 10px;
padding-right: 10px;
}

38
pelicanconf.py Normal file
View File

@ -0,0 +1,38 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*- #
from __future__ import unicode_literals
AUTHOR = 'theo'
SITENAME = 'theo lem'
SITEURL = ''
PATH = 'content'
TIMEZONE = 'Europe/Paris'
DEFAULT_LANG = 'fr'
# Feed generation is usually not desired when developing
FEED_ALL_ATOM = None
CATEGORY_FEED_ATOM = None
TRANSLATION_FEED_ATOM = None
AUTHOR_FEED_ATOM = None
AUTHOR_FEED_RSS = None
# # Blogroll
# LINKS = (('Pelican', 'http://getpelican.com/'),
# ('Python.org', 'http://python.org/'),
# ('Jinja2', 'http://jinja.pocoo.org/'),
# ('You can modify those links in your config file', '#'),)
# # Social widget
# SOCIAL = (('You can add links in your config file', '#'),
# ('Another social link', '#'),)
DEFAULT_PAGINATION = False
CSS_FILE = 'main.css'
THEME = 'themes/theo_lem'
# Uncomment following line if you want document-relative URLs when developing
#RELATIVE_URLS = True

25
publishconf.py Normal file
View File

@ -0,0 +1,25 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*- #
from __future__ import unicode_literals
# This file is only used if you use `make publish` or
# explicitly specify it as your config file.
import os
import sys
sys.path.append(os.curdir)
from pelicanconf import *
# If your site is available via HTTPS, make sure SITEURL begins with https://
SITEURL = 'https://theo-lem.org'
RELATIVE_URLS = False
FEED_ALL_ATOM = 'feeds/all.atom.xml'
CATEGORY_FEED_ATOM = 'feeds/{slug}.atom.xml'
DELETE_OUTPUT_DIRECTORY = True
# Following items are often useful when publishing
#DISQUS_SITENAME = ""
#GOOGLE_ANALYTICS = ""

110
tasks.py Normal file
View File

@ -0,0 +1,110 @@
# -*- coding: utf-8 -*-
import os
import shutil
import sys
import datetime
from invoke import task
from invoke.util import cd
from pelican.server import ComplexHTTPRequestHandler, RootedHTTPServer
from pelican.settings import DEFAULT_CONFIG, get_settings_from_file
SETTINGS_FILE_BASE = 'pelicanconf.py'
SETTINGS = {}
SETTINGS.update(DEFAULT_CONFIG)
LOCAL_SETTINGS = get_settings_from_file(SETTINGS_FILE_BASE)
SETTINGS.update(LOCAL_SETTINGS)
CONFIG = {
'settings_base': SETTINGS_FILE_BASE,
'settings_publish': 'publishconf.py',
# Output path. Can be absolute or relative to tasks.py. Default: 'output'
'deploy_path': SETTINGS['OUTPUT_PATH'],
# Port for `serve`
'port': 8000,
}
@task
def clean(c):
"""Remove generated files"""
if os.path.isdir(CONFIG['deploy_path']):
shutil.rmtree(CONFIG['deploy_path'])
os.makedirs(CONFIG['deploy_path'])
@task
def build(c):
"""Build local version of site"""
c.run('pelican -s {settings_base}'.format(**CONFIG))
@task
def rebuild(c):
"""`build` with the delete switch"""
c.run('pelican -d -s {settings_base}'.format(**CONFIG))
@task
def regenerate(c):
"""Automatically regenerate site upon file modification"""
c.run('pelican -r -s {settings_base}'.format(**CONFIG))
@task
def serve(c):
"""Serve site at http://localhost:$PORT/ (default port is 8000)"""
class AddressReuseTCPServer(RootedHTTPServer):
allow_reuse_address = True
server = AddressReuseTCPServer(
CONFIG['deploy_path'],
('', CONFIG['port']),
ComplexHTTPRequestHandler)
sys.stderr.write('Serving on port {port} ...\n'.format(**CONFIG))
server.serve_forever()
@task
def reserve(c):
"""`build`, then `serve`"""
build(c)
serve(c)
@task
def preview(c):
"""Build production version of site"""
c.run('pelican -s {settings_publish}'.format(**CONFIG))
@task
def livereload(c):
"""Automatically reload browser tab upon file modification."""
from livereload import Server
build(c)
server = Server()
# Watch the base settings file
server.watch(CONFIG['settings_base'], lambda: build(c))
# Watch content source files
content_file_extensions = ['.md', '.rst']
for extension in content_file_extensions:
content_blob = '{0}/**/*{1}'.format(SETTINGS['PATH'], extension)
server.watch(content_blob, lambda: build(c))
# Watch the theme's templates and static assets
theme_path = SETTINGS['THEME']
server.watch('{}/templates/*.html'.format(theme_path), lambda: build(c))
static_file_extensions = ['.css', '.js']
for extension in static_file_extensions:
static_file = '{0}/static/**/*{1}'.format(theme_path, extension)
server.watch(static_file, lambda: build(c))
# Serve output path on configured port
server.serve(port=CONFIG['port'], root=CONFIG['deploy_path'])
@task
def publish(c):
"""Publish to production via rsync"""
c.run('pelican -s {settings_publish}'.format(**CONFIG))
c.run(
'rsync --delete --exclude ".DS_Store" -pthrvz -c '
'-e "ssh -p {ssh_port}" '
'{} {ssh_user}@{ssh_host}:{ssh_path}'.format(
CONFIG['deploy_path'].rstrip('/') + '/',
**CONFIG))

View File

@ -0,0 +1,30 @@
* {
background-color: white;
font-family: 'Courier New', Courier, monospace;
}
.navbar {
font-size: 1.5em;
width: 100%;
height: 10px;
border-right-color: black;
background-color: white;
margin-top: 30px;
border-bottom: solid;
border-width: 1px;
}
.banner {
height: 530px;
border: solid;
border-width: 1px;
}
.banner-img {
width: 100%;
}
.content {
margin-top: 50px;
margin-left: 15%;
}
.article-anchor {
padding-left: 10px;
padding-right: 10px;
}

View File

@ -0,0 +1,41 @@
@navbar-width:100%;
@navbar-height: 10px;
@banner-height: 530px;
@banner-width: 100%;
* {
background-color: white;
font-family: 'Courier New', Courier, monospace;
}
.navbar {
font-size: 1.5em;
width: @navbar-width;
height: @navbar-height;
border-width: 1px;
border-right-color: black;
background-color: white;
margin-top: 30px;
border-bottom: solid;
border-width: 1px;
}
.banner {
height: @banner-height;
border: solid;
border-width: 1px;
}
.banner-img {
width: @banner-width;
}
.content {
margin-top: @navbar-height + 40px;
margin-left: 15%;
}
.article-anchor {
padding-left: 10px;
padding-right: 10px;
}

View File

View File

@ -0,0 +1,6 @@
{% extends 'base.html' %}
{% block content %}
{{ article.content }}
{% endblock content %}

View File

View File

View File

@ -0,0 +1,33 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="utf-8">
<title>{% block title %}{{ SITENAME }}{% endblock %}</title>
<link rel="stylesheet" href="theme/css/{{ CSS_FILE }}" type="text/css" />
</head>
<body>
<div class='banner'>
<a href='index.html'>
<img class='banner-img' src='images/banner_croped.png'>
</a>
</div>
<div align='center' class='navbar'>
<a id='home' href='index.html'></a>
{% if articles %}
<div id='article-anchors'>
{% for article in articles %}
<a class='article-anchor' href={{ article.url }}>{{ article.title }}</a>
{% endfor %}
</div>
{% endif %}
</div>
<div class='content'>
{% block content%}
{% endblock %}
</div>
</body>
</html>

View File

View File

@ -0,0 +1,9 @@
{% extends 'base.html' %}
{% block content %}
<ul>TODO
<li>beautiful navbar</li>
<li>articles page</li>
</ul>
{% endblock content %}

View File

View File

View File