1
0
mirror of https://gitlab.com/free_zed/free_zed.gitlab.io.git synced 2024-06-26 04:18:54 +00:00
free_zed.gitlab.io/pubconf-master.py
Freezed 8a9dda332a Add a commit link in footer
Do some change in CSS and HTML indentatior
The commit link is build with 3 new template files :
    - time
    - date
    - commit
Each file is updated during CI, before _pelican_ build HTML files.
2019-01-21 00:40:50 +01:00

21 lines
578 B
Python

#!/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://free_zed.gitlab.io'
FEED_ALL_ATOM = 'feeds/all.atom.xml'
CATEGORY_FEED_ATOM = 'feeds/{slug}.atom.xml'
# URL of the repo to link build commit
REPO_COMMIT_URL = 'https://gitlab.com/free_zed/free_zed.gitlab.io/commit'