Skip to content
Snippets Groups Projects
Commit 17303897 authored by nimrod's avatar nimrod
Browse files

Replace theme with seafoam.

parent 5f0a9436
No related branches found
No related tags found
No related merge requests found
---
variables:
GIT_SUBMODULE_STRATEGY: recursive
include:
- project: shore/ci-templates
file: templates/pre-commit.yml
......
[submodule "pelican-mockingbird"]
path = pelican-mockingbird
url = https://git.shore.co.il/nimrod/pelican-mockingbird.git/
......@@ -6,6 +6,9 @@ name = "pypi"
[packages]
pelican = "*"
pelican-minification = "*"
seafoam = "*"
pelican-image-process = "*"
pelican-jinja-filters = "*"
[dev-packages]
......
This diff is collapsed.
pelican-mockingbird @ fe4239d3
Subproject commit fe4239d39091682dfdbb5dd5b6dbf75798f9377c
# -*- coding: utf-8 -*- #
# pylint: disable=import-error
from __future__ import unicode_literals
import seafoam
AUTHOR = "Nimrod Adar"
SITENAME = "My notes and ramblings"
SITEURL = "http://localhost:8080"
......@@ -28,10 +31,22 @@ RELATIVE_URLS = True
DIRECT_TEMPLATES = ("index", "archives")
DISPLAY_CATEGORIES_ON_MENU = False
DISPLAY_PAGES_ON_MENU = True
MENUITEMS = (("Code", "https://git.shore.co.il/explore/"),)
THEME = "./pelican-mockingbird"
MENUITEMS = (("Code", "https://git.shore.co.il/explore/", None),)
THEME = seafoam.get_path()
BOOTSTRAP_THEME = "seafoam"
DOCUTIL_CSS = True
CC_LICENSE = "CC-BY-NC-ND"
PLUGINS = [
"pelican.plugins.jinja_filters",
"pelican.plugins.image_process",
]
IMAGE_PROCESS = {}
TAGS_SAVE_AS = ""
TAG_SAVE_AS = ""
HIDE_SIDEBAR = True
STATIC_PATHS = ["static"]
ARTICLE_URL = "{slug}/"
DELETE_OUTPUT_DIRECTORY = True
......
......@@ -11,4 +11,8 @@ from pelicanconf import * # noqa: E402,F401,F403
SITEURL = "https://www.shore.co.il/blog"
RELATIVE_URLS = False
PLUGINS = ("minification",)
PLUGINS = [
"minification",
"pelican.plugins.jinja_filters",
"pelican.plugins.image_process",
]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment