diff --git a/.gitignore b/.gitignore index e61bca2..789644b 100644 --- a/.gitignore +++ b/.gitignore @@ -1,116 +1,3 @@ -# ---> Python -# Byte-compiled / optimized / DLL files -__pycache__/ -*.py[cod] -*$py.class - -# C extensions -*.so - -# Distribution / packaging -.Python -build/ -develop-eggs/ -dist/ -downloads/ -eggs/ -.eggs/ -lib/ -lib64/ -parts/ -sdist/ -var/ -wheels/ -*.egg-info/ -.installed.cfg -*.egg -MANIFEST - -# PyInstaller -# Usually these files are written by a python script from a template -# before PyInstaller builds the exe, so as to inject date/other infos into it. -*.manifest -*.spec - -# Installer logs -pip-log.txt -pip-delete-this-directory.txt - -# Unit test / coverage reports -htmlcov/ -.tox/ -.nox/ -.coverage -.coverage.* -.cache -nosetests.xml -coverage.xml -*.cover -.hypothesis/ -.pytest_cache/ - -# Translations -*.mo -*.pot - -# Django stuff: -*.log -local_settings.py -db.sqlite3 - -# Flask stuff: -instance/ -.webassets-cache - -# Scrapy stuff: -.scrapy - -# Sphinx documentation -docs/_build/ - -# PyBuilder -target/ - -# Jupyter Notebook -.ipynb_checkpoints - -# IPython -profile_default/ -ipython_config.py - -# pyenv -.python-version - -# celery beat schedule file -celerybeat-schedule - -# SageMath parsed files -*.sage.py - -# Environments -.env -.venv -env/ -venv/ -ENV/ -env.bak/ -venv.bak/ - -# Spyder project settings -.spyderproject -.spyproject - -# Rope project settings -.ropeproject - -# mkdocs documentation -/site - -# mypy -.mypy_cache/ -.dmypy.json -dmypy.json - -# Pyre type checker -.pyre/ - +/venv +/output +*.pyc \ No newline at end of file diff --git a/gen.sh b/gen.sh new file mode 100755 index 0000000..4657bcc --- /dev/null +++ b/gen.sh @@ -0,0 +1,37 @@ +#!/usr/bin/env bash + +# Init venv +cd `dirname $0` && +( + if [ ! -d ./venv ]; then + echo "Create venv" && + python3 -m venv venv + fi +) && +source ./venv/bin/activate && + +# Install updates +pip install --upgrade pip && +pip install --upgrade pelican markdown htmlmin && + +# Clean and generate +(rm -rf output || true) && +python3 -c "import pelican; pelican.main()" content && + +# Optimize +tools/cssfix.py output/theme/css/* && +( + for i in `find output -wholename "*.html"` + do + htmlmin -c -s "$i" "$i" || exit 1 + done +) && + +# Compress +( + for i in `find output -wholename "*.css" -or -wholename "*.js" -or -wholename "*.html"` + do + (gzip --best --keep "$i" && brotli --best --keep "$i") || + (echo ERROR in file $i; exit 1) || exit 1 + done +) diff --git a/pelicanconf.py b/pelicanconf.py new file mode 100644 index 0000000..4ab85f4 --- /dev/null +++ b/pelicanconf.py @@ -0,0 +1,36 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- # +from __future__ import unicode_literals + +AUTHOR = 'Marko Semet' +SITENAME = 'Marko10_000' +SITEURL = '' +THEME = "./theme" + +PATH = 'content' + +TIMEZONE = 'Europe/Berlin' + +DEFAULT_LANG = 'de' + +# 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 + +# Uncomment following line if you want document-relative URLs when developing +RELATIVE_URLS = True diff --git a/publishconf.py b/publishconf.py new file mode 100644 index 0000000..58e6726 --- /dev/null +++ b/publishconf.py @@ -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 = '' +RELATIVE_URLS = True + +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 = "" diff --git a/theme/resources/feather/activity.svg b/theme/resources/feather/activity.svg new file mode 100644 index 0000000..669a57a --- /dev/null +++ b/theme/resources/feather/activity.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/airplay.svg b/theme/resources/feather/airplay.svg new file mode 100644 index 0000000..7ce7302 --- /dev/null +++ b/theme/resources/feather/airplay.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/alert-circle.svg b/theme/resources/feather/alert-circle.svg new file mode 100644 index 0000000..6b41c0b --- /dev/null +++ b/theme/resources/feather/alert-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/alert-octagon.svg b/theme/resources/feather/alert-octagon.svg new file mode 100644 index 0000000..6943b6d --- /dev/null +++ b/theme/resources/feather/alert-octagon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/alert-triangle.svg b/theme/resources/feather/alert-triangle.svg new file mode 100644 index 0000000..59e65b1 --- /dev/null +++ b/theme/resources/feather/alert-triangle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/align-center.svg b/theme/resources/feather/align-center.svg new file mode 100644 index 0000000..5b8842e --- /dev/null +++ b/theme/resources/feather/align-center.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/align-justify.svg b/theme/resources/feather/align-justify.svg new file mode 100644 index 0000000..0539876 --- /dev/null +++ b/theme/resources/feather/align-justify.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/align-left.svg b/theme/resources/feather/align-left.svg new file mode 100644 index 0000000..9ac852a --- /dev/null +++ b/theme/resources/feather/align-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/align-right.svg b/theme/resources/feather/align-right.svg new file mode 100644 index 0000000..ef139ff --- /dev/null +++ b/theme/resources/feather/align-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/anchor.svg b/theme/resources/feather/anchor.svg new file mode 100644 index 0000000..e01627a --- /dev/null +++ b/theme/resources/feather/anchor.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/aperture.svg b/theme/resources/feather/aperture.svg new file mode 100644 index 0000000..9936e86 --- /dev/null +++ b/theme/resources/feather/aperture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/archive.svg b/theme/resources/feather/archive.svg new file mode 100644 index 0000000..428882c --- /dev/null +++ b/theme/resources/feather/archive.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/arrow-down-circle.svg b/theme/resources/feather/arrow-down-circle.svg new file mode 100644 index 0000000..3238091 --- /dev/null +++ b/theme/resources/feather/arrow-down-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/arrow-down-left.svg b/theme/resources/feather/arrow-down-left.svg new file mode 100644 index 0000000..7248358 --- /dev/null +++ b/theme/resources/feather/arrow-down-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/arrow-down-right.svg b/theme/resources/feather/arrow-down-right.svg new file mode 100644 index 0000000..81d9822 --- /dev/null +++ b/theme/resources/feather/arrow-down-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/arrow-down.svg b/theme/resources/feather/arrow-down.svg new file mode 100644 index 0000000..4f84f62 --- /dev/null +++ b/theme/resources/feather/arrow-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/arrow-left-circle.svg b/theme/resources/feather/arrow-left-circle.svg new file mode 100644 index 0000000..3b19ff8 --- /dev/null +++ b/theme/resources/feather/arrow-left-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/arrow-left.svg b/theme/resources/feather/arrow-left.svg new file mode 100644 index 0000000..a5058fc --- /dev/null +++ b/theme/resources/feather/arrow-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/arrow-right-circle.svg b/theme/resources/feather/arrow-right-circle.svg new file mode 100644 index 0000000..ff01dd5 --- /dev/null +++ b/theme/resources/feather/arrow-right-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/arrow-right.svg b/theme/resources/feather/arrow-right.svg new file mode 100644 index 0000000..939b57c --- /dev/null +++ b/theme/resources/feather/arrow-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/arrow-up-circle.svg b/theme/resources/feather/arrow-up-circle.svg new file mode 100644 index 0000000..044a75d --- /dev/null +++ b/theme/resources/feather/arrow-up-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/arrow-up-left.svg b/theme/resources/feather/arrow-up-left.svg new file mode 100644 index 0000000..cea55e8 --- /dev/null +++ b/theme/resources/feather/arrow-up-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/arrow-up-right.svg b/theme/resources/feather/arrow-up-right.svg new file mode 100644 index 0000000..95678e0 --- /dev/null +++ b/theme/resources/feather/arrow-up-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/arrow-up.svg b/theme/resources/feather/arrow-up.svg new file mode 100644 index 0000000..16b13ab --- /dev/null +++ b/theme/resources/feather/arrow-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/at-sign.svg b/theme/resources/feather/at-sign.svg new file mode 100644 index 0000000..5a5e5d0 --- /dev/null +++ b/theme/resources/feather/at-sign.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/award.svg b/theme/resources/feather/award.svg new file mode 100644 index 0000000..be70d5a --- /dev/null +++ b/theme/resources/feather/award.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/bar-chart-2.svg b/theme/resources/feather/bar-chart-2.svg new file mode 100644 index 0000000..864167a --- /dev/null +++ b/theme/resources/feather/bar-chart-2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/bar-chart.svg b/theme/resources/feather/bar-chart.svg new file mode 100644 index 0000000..074d7c1 --- /dev/null +++ b/theme/resources/feather/bar-chart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/battery-charging.svg b/theme/resources/feather/battery-charging.svg new file mode 100644 index 0000000..644cb59 --- /dev/null +++ b/theme/resources/feather/battery-charging.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/battery.svg b/theme/resources/feather/battery.svg new file mode 100644 index 0000000..7fe8771 --- /dev/null +++ b/theme/resources/feather/battery.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/bell-off.svg b/theme/resources/feather/bell-off.svg new file mode 100644 index 0000000..4b07c84 --- /dev/null +++ b/theme/resources/feather/bell-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/bell.svg b/theme/resources/feather/bell.svg new file mode 100644 index 0000000..bba561c --- /dev/null +++ b/theme/resources/feather/bell.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/bluetooth.svg b/theme/resources/feather/bluetooth.svg new file mode 100644 index 0000000..cebed7b --- /dev/null +++ b/theme/resources/feather/bluetooth.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/bold.svg b/theme/resources/feather/bold.svg new file mode 100644 index 0000000..d1a4efd --- /dev/null +++ b/theme/resources/feather/bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/book-open.svg b/theme/resources/feather/book-open.svg new file mode 100644 index 0000000..5e0ca0a --- /dev/null +++ b/theme/resources/feather/book-open.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/book.svg b/theme/resources/feather/book.svg new file mode 100644 index 0000000..12ffcbc --- /dev/null +++ b/theme/resources/feather/book.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/bookmark.svg b/theme/resources/feather/bookmark.svg new file mode 100644 index 0000000..2239cc5 --- /dev/null +++ b/theme/resources/feather/bookmark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/box.svg b/theme/resources/feather/box.svg new file mode 100644 index 0000000..d89be30 --- /dev/null +++ b/theme/resources/feather/box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/briefcase.svg b/theme/resources/feather/briefcase.svg new file mode 100644 index 0000000..e3af050 --- /dev/null +++ b/theme/resources/feather/briefcase.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/calendar.svg b/theme/resources/feather/calendar.svg new file mode 100644 index 0000000..6c7fd87 --- /dev/null +++ b/theme/resources/feather/calendar.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/camera-off.svg b/theme/resources/feather/camera-off.svg new file mode 100644 index 0000000..daa3e25 --- /dev/null +++ b/theme/resources/feather/camera-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/camera.svg b/theme/resources/feather/camera.svg new file mode 100644 index 0000000..0e7f060 --- /dev/null +++ b/theme/resources/feather/camera.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/cast.svg b/theme/resources/feather/cast.svg new file mode 100644 index 0000000..9e27cb4 --- /dev/null +++ b/theme/resources/feather/cast.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/check-circle.svg b/theme/resources/feather/check-circle.svg new file mode 100644 index 0000000..f2f4fd1 --- /dev/null +++ b/theme/resources/feather/check-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/check-square.svg b/theme/resources/feather/check-square.svg new file mode 100644 index 0000000..72ab7a8 --- /dev/null +++ b/theme/resources/feather/check-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/check.svg b/theme/resources/feather/check.svg new file mode 100644 index 0000000..1c20989 --- /dev/null +++ b/theme/resources/feather/check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/chevron-down.svg b/theme/resources/feather/chevron-down.svg new file mode 100644 index 0000000..278c6a3 --- /dev/null +++ b/theme/resources/feather/chevron-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/chevron-left.svg b/theme/resources/feather/chevron-left.svg new file mode 100644 index 0000000..747d46d --- /dev/null +++ b/theme/resources/feather/chevron-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/chevron-right.svg b/theme/resources/feather/chevron-right.svg new file mode 100644 index 0000000..258de41 --- /dev/null +++ b/theme/resources/feather/chevron-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/chevron-up.svg b/theme/resources/feather/chevron-up.svg new file mode 100644 index 0000000..4eb5ecc --- /dev/null +++ b/theme/resources/feather/chevron-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/chevrons-down.svg b/theme/resources/feather/chevrons-down.svg new file mode 100644 index 0000000..e67ef2f --- /dev/null +++ b/theme/resources/feather/chevrons-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/chevrons-left.svg b/theme/resources/feather/chevrons-left.svg new file mode 100644 index 0000000..c32e398 --- /dev/null +++ b/theme/resources/feather/chevrons-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/chevrons-right.svg b/theme/resources/feather/chevrons-right.svg new file mode 100644 index 0000000..f506814 --- /dev/null +++ b/theme/resources/feather/chevrons-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/chevrons-up.svg b/theme/resources/feather/chevrons-up.svg new file mode 100644 index 0000000..0eaf518 --- /dev/null +++ b/theme/resources/feather/chevrons-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/chrome.svg b/theme/resources/feather/chrome.svg new file mode 100644 index 0000000..9189815 --- /dev/null +++ b/theme/resources/feather/chrome.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/circle.svg b/theme/resources/feather/circle.svg new file mode 100644 index 0000000..b009088 --- /dev/null +++ b/theme/resources/feather/circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/clipboard.svg b/theme/resources/feather/clipboard.svg new file mode 100644 index 0000000..ccee454 --- /dev/null +++ b/theme/resources/feather/clipboard.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/clock.svg b/theme/resources/feather/clock.svg new file mode 100644 index 0000000..ea3f5e5 --- /dev/null +++ b/theme/resources/feather/clock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/cloud-drizzle.svg b/theme/resources/feather/cloud-drizzle.svg new file mode 100644 index 0000000..13af6bb --- /dev/null +++ b/theme/resources/feather/cloud-drizzle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/cloud-lightning.svg b/theme/resources/feather/cloud-lightning.svg new file mode 100644 index 0000000..32d154c --- /dev/null +++ b/theme/resources/feather/cloud-lightning.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/cloud-off.svg b/theme/resources/feather/cloud-off.svg new file mode 100644 index 0000000..1e1e7d6 --- /dev/null +++ b/theme/resources/feather/cloud-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/cloud-rain.svg b/theme/resources/feather/cloud-rain.svg new file mode 100644 index 0000000..3e0b85b --- /dev/null +++ b/theme/resources/feather/cloud-rain.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/cloud-snow.svg b/theme/resources/feather/cloud-snow.svg new file mode 100644 index 0000000..78e0008 --- /dev/null +++ b/theme/resources/feather/cloud-snow.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/cloud.svg b/theme/resources/feather/cloud.svg new file mode 100644 index 0000000..0ee0c63 --- /dev/null +++ b/theme/resources/feather/cloud.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/code.svg b/theme/resources/feather/code.svg new file mode 100644 index 0000000..c4954b5 --- /dev/null +++ b/theme/resources/feather/code.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/codepen.svg b/theme/resources/feather/codepen.svg new file mode 100644 index 0000000..ab2a815 --- /dev/null +++ b/theme/resources/feather/codepen.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/codesandbox.svg b/theme/resources/feather/codesandbox.svg new file mode 100644 index 0000000..49848f5 --- /dev/null +++ b/theme/resources/feather/codesandbox.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/coffee.svg b/theme/resources/feather/coffee.svg new file mode 100644 index 0000000..32905e5 --- /dev/null +++ b/theme/resources/feather/coffee.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/columns.svg b/theme/resources/feather/columns.svg new file mode 100644 index 0000000..d264b55 --- /dev/null +++ b/theme/resources/feather/columns.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/command.svg b/theme/resources/feather/command.svg new file mode 100644 index 0000000..93f554c --- /dev/null +++ b/theme/resources/feather/command.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/compass.svg b/theme/resources/feather/compass.svg new file mode 100644 index 0000000..3296260 --- /dev/null +++ b/theme/resources/feather/compass.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/copy.svg b/theme/resources/feather/copy.svg new file mode 100644 index 0000000..4e0b09f --- /dev/null +++ b/theme/resources/feather/copy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/corner-down-left.svg b/theme/resources/feather/corner-down-left.svg new file mode 100644 index 0000000..9fffb3e --- /dev/null +++ b/theme/resources/feather/corner-down-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/corner-down-right.svg b/theme/resources/feather/corner-down-right.svg new file mode 100644 index 0000000..b27d408 --- /dev/null +++ b/theme/resources/feather/corner-down-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/corner-left-down.svg b/theme/resources/feather/corner-left-down.svg new file mode 100644 index 0000000..24b8375 --- /dev/null +++ b/theme/resources/feather/corner-left-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/corner-left-up.svg b/theme/resources/feather/corner-left-up.svg new file mode 100644 index 0000000..e54527c --- /dev/null +++ b/theme/resources/feather/corner-left-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/corner-right-down.svg b/theme/resources/feather/corner-right-down.svg new file mode 100644 index 0000000..a49e6d6 --- /dev/null +++ b/theme/resources/feather/corner-right-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/corner-right-up.svg b/theme/resources/feather/corner-right-up.svg new file mode 100644 index 0000000..a5c5dce --- /dev/null +++ b/theme/resources/feather/corner-right-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/corner-up-left.svg b/theme/resources/feather/corner-up-left.svg new file mode 100644 index 0000000..0a1ffd6 --- /dev/null +++ b/theme/resources/feather/corner-up-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/corner-up-right.svg b/theme/resources/feather/corner-up-right.svg new file mode 100644 index 0000000..0b8f961 --- /dev/null +++ b/theme/resources/feather/corner-up-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/cpu.svg b/theme/resources/feather/cpu.svg new file mode 100644 index 0000000..2ed16ef --- /dev/null +++ b/theme/resources/feather/cpu.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/credit-card.svg b/theme/resources/feather/credit-card.svg new file mode 100644 index 0000000..1b7fd02 --- /dev/null +++ b/theme/resources/feather/credit-card.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/crop.svg b/theme/resources/feather/crop.svg new file mode 100644 index 0000000..ffbfd04 --- /dev/null +++ b/theme/resources/feather/crop.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/crosshair.svg b/theme/resources/feather/crosshair.svg new file mode 100644 index 0000000..ba39401 --- /dev/null +++ b/theme/resources/feather/crosshair.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/database.svg b/theme/resources/feather/database.svg new file mode 100644 index 0000000..c296fbc --- /dev/null +++ b/theme/resources/feather/database.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/delete.svg b/theme/resources/feather/delete.svg new file mode 100644 index 0000000..8c6074b --- /dev/null +++ b/theme/resources/feather/delete.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/disc.svg b/theme/resources/feather/disc.svg new file mode 100644 index 0000000..2595b44 --- /dev/null +++ b/theme/resources/feather/disc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/dollar-sign.svg b/theme/resources/feather/dollar-sign.svg new file mode 100644 index 0000000..1a124d2 --- /dev/null +++ b/theme/resources/feather/dollar-sign.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/download-cloud.svg b/theme/resources/feather/download-cloud.svg new file mode 100644 index 0000000..f3126fc --- /dev/null +++ b/theme/resources/feather/download-cloud.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/download.svg b/theme/resources/feather/download.svg new file mode 100644 index 0000000..76767a9 --- /dev/null +++ b/theme/resources/feather/download.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/droplet.svg b/theme/resources/feather/droplet.svg new file mode 100644 index 0000000..ca09301 --- /dev/null +++ b/theme/resources/feather/droplet.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/edit-2.svg b/theme/resources/feather/edit-2.svg new file mode 100644 index 0000000..06830c9 --- /dev/null +++ b/theme/resources/feather/edit-2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/edit-3.svg b/theme/resources/feather/edit-3.svg new file mode 100644 index 0000000..d728efc --- /dev/null +++ b/theme/resources/feather/edit-3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/edit.svg b/theme/resources/feather/edit.svg new file mode 100644 index 0000000..ec7b4ca --- /dev/null +++ b/theme/resources/feather/edit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/external-link.svg b/theme/resources/feather/external-link.svg new file mode 100644 index 0000000..6236df3 --- /dev/null +++ b/theme/resources/feather/external-link.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/eye-off.svg b/theme/resources/feather/eye-off.svg new file mode 100644 index 0000000..77c54cb --- /dev/null +++ b/theme/resources/feather/eye-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/eye.svg b/theme/resources/feather/eye.svg new file mode 100644 index 0000000..9cde243 --- /dev/null +++ b/theme/resources/feather/eye.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/facebook.svg b/theme/resources/feather/facebook.svg new file mode 100644 index 0000000..2570f56 --- /dev/null +++ b/theme/resources/feather/facebook.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/fast-forward.svg b/theme/resources/feather/fast-forward.svg new file mode 100644 index 0000000..fa39877 --- /dev/null +++ b/theme/resources/feather/fast-forward.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/feather.svg b/theme/resources/feather/feather.svg new file mode 100644 index 0000000..ac3b868 --- /dev/null +++ b/theme/resources/feather/feather.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/figma.svg b/theme/resources/feather/figma.svg new file mode 100644 index 0000000..66fd217 --- /dev/null +++ b/theme/resources/feather/figma.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/file-minus.svg b/theme/resources/feather/file-minus.svg new file mode 100644 index 0000000..345756e --- /dev/null +++ b/theme/resources/feather/file-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/file-plus.svg b/theme/resources/feather/file-plus.svg new file mode 100644 index 0000000..eed1200 --- /dev/null +++ b/theme/resources/feather/file-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/file-text.svg b/theme/resources/feather/file-text.svg new file mode 100644 index 0000000..4197ddd --- /dev/null +++ b/theme/resources/feather/file-text.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/file.svg b/theme/resources/feather/file.svg new file mode 100644 index 0000000..378519a --- /dev/null +++ b/theme/resources/feather/file.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/film.svg b/theme/resources/feather/film.svg new file mode 100644 index 0000000..ac46360 --- /dev/null +++ b/theme/resources/feather/film.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/filter.svg b/theme/resources/feather/filter.svg new file mode 100644 index 0000000..38a47e0 --- /dev/null +++ b/theme/resources/feather/filter.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/flag.svg b/theme/resources/feather/flag.svg new file mode 100644 index 0000000..037737c --- /dev/null +++ b/theme/resources/feather/flag.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/folder-minus.svg b/theme/resources/feather/folder-minus.svg new file mode 100644 index 0000000..d5b7af6 --- /dev/null +++ b/theme/resources/feather/folder-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/folder-plus.svg b/theme/resources/feather/folder-plus.svg new file mode 100644 index 0000000..898f2fc --- /dev/null +++ b/theme/resources/feather/folder-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/folder.svg b/theme/resources/feather/folder.svg new file mode 100644 index 0000000..134458b --- /dev/null +++ b/theme/resources/feather/folder.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/frown.svg b/theme/resources/feather/frown.svg new file mode 100644 index 0000000..f312254 --- /dev/null +++ b/theme/resources/feather/frown.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/gift.svg b/theme/resources/feather/gift.svg new file mode 100644 index 0000000..d2c14bd --- /dev/null +++ b/theme/resources/feather/gift.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/git-branch.svg b/theme/resources/feather/git-branch.svg new file mode 100644 index 0000000..4400372 --- /dev/null +++ b/theme/resources/feather/git-branch.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/git-commit.svg b/theme/resources/feather/git-commit.svg new file mode 100644 index 0000000..e959d72 --- /dev/null +++ b/theme/resources/feather/git-commit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/git-merge.svg b/theme/resources/feather/git-merge.svg new file mode 100644 index 0000000..c65fffd --- /dev/null +++ b/theme/resources/feather/git-merge.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/git-pull-request.svg b/theme/resources/feather/git-pull-request.svg new file mode 100644 index 0000000..fc80bdf --- /dev/null +++ b/theme/resources/feather/git-pull-request.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/github.svg b/theme/resources/feather/github.svg new file mode 100644 index 0000000..ff0af48 --- /dev/null +++ b/theme/resources/feather/github.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/gitlab.svg b/theme/resources/feather/gitlab.svg new file mode 100644 index 0000000..85d54a1 --- /dev/null +++ b/theme/resources/feather/gitlab.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/globe.svg b/theme/resources/feather/globe.svg new file mode 100644 index 0000000..0a0586d --- /dev/null +++ b/theme/resources/feather/globe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/grid.svg b/theme/resources/feather/grid.svg new file mode 100644 index 0000000..8ef2e9d --- /dev/null +++ b/theme/resources/feather/grid.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/hard-drive.svg b/theme/resources/feather/hard-drive.svg new file mode 100644 index 0000000..c08131d --- /dev/null +++ b/theme/resources/feather/hard-drive.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/hash.svg b/theme/resources/feather/hash.svg new file mode 100644 index 0000000..c9c8d41 --- /dev/null +++ b/theme/resources/feather/hash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/headphones.svg b/theme/resources/feather/headphones.svg new file mode 100644 index 0000000..fd8915b --- /dev/null +++ b/theme/resources/feather/headphones.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/heart.svg b/theme/resources/feather/heart.svg new file mode 100644 index 0000000..a083b7e --- /dev/null +++ b/theme/resources/feather/heart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/help-circle.svg b/theme/resources/feather/help-circle.svg new file mode 100644 index 0000000..c9cd11a --- /dev/null +++ b/theme/resources/feather/help-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/hexagon.svg b/theme/resources/feather/hexagon.svg new file mode 100644 index 0000000..eae7f25 --- /dev/null +++ b/theme/resources/feather/hexagon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/home.svg b/theme/resources/feather/home.svg new file mode 100644 index 0000000..7bb31b2 --- /dev/null +++ b/theme/resources/feather/home.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/image.svg b/theme/resources/feather/image.svg new file mode 100644 index 0000000..a7d84b9 --- /dev/null +++ b/theme/resources/feather/image.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/inbox.svg b/theme/resources/feather/inbox.svg new file mode 100644 index 0000000..03a13b4 --- /dev/null +++ b/theme/resources/feather/inbox.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/info.svg b/theme/resources/feather/info.svg new file mode 100644 index 0000000..332616d --- /dev/null +++ b/theme/resources/feather/info.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/instagram.svg b/theme/resources/feather/instagram.svg new file mode 100644 index 0000000..c0a9562 --- /dev/null +++ b/theme/resources/feather/instagram.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/italic.svg b/theme/resources/feather/italic.svg new file mode 100644 index 0000000..a123d37 --- /dev/null +++ b/theme/resources/feather/italic.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/key.svg b/theme/resources/feather/key.svg new file mode 100644 index 0000000..e778e74 --- /dev/null +++ b/theme/resources/feather/key.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/layers.svg b/theme/resources/feather/layers.svg new file mode 100644 index 0000000..ea788c2 --- /dev/null +++ b/theme/resources/feather/layers.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/layout.svg b/theme/resources/feather/layout.svg new file mode 100644 index 0000000..28743d9 --- /dev/null +++ b/theme/resources/feather/layout.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/life-buoy.svg b/theme/resources/feather/life-buoy.svg new file mode 100644 index 0000000..54c2bd7 --- /dev/null +++ b/theme/resources/feather/life-buoy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/link-2.svg b/theme/resources/feather/link-2.svg new file mode 100644 index 0000000..8cc7f6d --- /dev/null +++ b/theme/resources/feather/link-2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/link.svg b/theme/resources/feather/link.svg new file mode 100644 index 0000000..c89dd41 --- /dev/null +++ b/theme/resources/feather/link.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/linkedin.svg b/theme/resources/feather/linkedin.svg new file mode 100644 index 0000000..3953109 --- /dev/null +++ b/theme/resources/feather/linkedin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/list.svg b/theme/resources/feather/list.svg new file mode 100644 index 0000000..e734498 --- /dev/null +++ b/theme/resources/feather/list.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/loader.svg b/theme/resources/feather/loader.svg new file mode 100644 index 0000000..e1a70c1 --- /dev/null +++ b/theme/resources/feather/loader.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/lock.svg b/theme/resources/feather/lock.svg new file mode 100644 index 0000000..de09d9d --- /dev/null +++ b/theme/resources/feather/lock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/log-in.svg b/theme/resources/feather/log-in.svg new file mode 100644 index 0000000..ba0da59 --- /dev/null +++ b/theme/resources/feather/log-in.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/log-out.svg b/theme/resources/feather/log-out.svg new file mode 100644 index 0000000..c9002c9 --- /dev/null +++ b/theme/resources/feather/log-out.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/mail.svg b/theme/resources/feather/mail.svg new file mode 100644 index 0000000..2af169e --- /dev/null +++ b/theme/resources/feather/mail.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/map-pin.svg b/theme/resources/feather/map-pin.svg new file mode 100644 index 0000000..d5548e9 --- /dev/null +++ b/theme/resources/feather/map-pin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/map.svg b/theme/resources/feather/map.svg new file mode 100644 index 0000000..ecebd7b --- /dev/null +++ b/theme/resources/feather/map.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/maximize-2.svg b/theme/resources/feather/maximize-2.svg new file mode 100644 index 0000000..e41fc0b --- /dev/null +++ b/theme/resources/feather/maximize-2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/maximize.svg b/theme/resources/feather/maximize.svg new file mode 100644 index 0000000..fc30518 --- /dev/null +++ b/theme/resources/feather/maximize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/meh.svg b/theme/resources/feather/meh.svg new file mode 100644 index 0000000..6f57fff --- /dev/null +++ b/theme/resources/feather/meh.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/menu.svg b/theme/resources/feather/menu.svg new file mode 100644 index 0000000..e8a84a9 --- /dev/null +++ b/theme/resources/feather/menu.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/message-circle.svg b/theme/resources/feather/message-circle.svg new file mode 100644 index 0000000..4b21b32 --- /dev/null +++ b/theme/resources/feather/message-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/message-square.svg b/theme/resources/feather/message-square.svg new file mode 100644 index 0000000..6a2e4e5 --- /dev/null +++ b/theme/resources/feather/message-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/mic-off.svg b/theme/resources/feather/mic-off.svg new file mode 100644 index 0000000..0786219 --- /dev/null +++ b/theme/resources/feather/mic-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/mic.svg b/theme/resources/feather/mic.svg new file mode 100644 index 0000000..dc5f780 --- /dev/null +++ b/theme/resources/feather/mic.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/minimize-2.svg b/theme/resources/feather/minimize-2.svg new file mode 100644 index 0000000..a720fa6 --- /dev/null +++ b/theme/resources/feather/minimize-2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/minimize.svg b/theme/resources/feather/minimize.svg new file mode 100644 index 0000000..46d6119 --- /dev/null +++ b/theme/resources/feather/minimize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/minus-circle.svg b/theme/resources/feather/minus-circle.svg new file mode 100644 index 0000000..80c0de1 --- /dev/null +++ b/theme/resources/feather/minus-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/minus-square.svg b/theme/resources/feather/minus-square.svg new file mode 100644 index 0000000..4862832 --- /dev/null +++ b/theme/resources/feather/minus-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/minus.svg b/theme/resources/feather/minus.svg new file mode 100644 index 0000000..93cc734 --- /dev/null +++ b/theme/resources/feather/minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/monitor.svg b/theme/resources/feather/monitor.svg new file mode 100644 index 0000000..6c3556d --- /dev/null +++ b/theme/resources/feather/monitor.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/moon.svg b/theme/resources/feather/moon.svg new file mode 100644 index 0000000..dbf7c6c --- /dev/null +++ b/theme/resources/feather/moon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/more-horizontal.svg b/theme/resources/feather/more-horizontal.svg new file mode 100644 index 0000000..dc6a855 --- /dev/null +++ b/theme/resources/feather/more-horizontal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/more-vertical.svg b/theme/resources/feather/more-vertical.svg new file mode 100644 index 0000000..cba6958 --- /dev/null +++ b/theme/resources/feather/more-vertical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/mouse-pointer.svg b/theme/resources/feather/mouse-pointer.svg new file mode 100644 index 0000000..f5af559 --- /dev/null +++ b/theme/resources/feather/mouse-pointer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/move.svg b/theme/resources/feather/move.svg new file mode 100644 index 0000000..4e251b5 --- /dev/null +++ b/theme/resources/feather/move.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/music.svg b/theme/resources/feather/music.svg new file mode 100644 index 0000000..7bee2f7 --- /dev/null +++ b/theme/resources/feather/music.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/navigation-2.svg b/theme/resources/feather/navigation-2.svg new file mode 100644 index 0000000..ae31db9 --- /dev/null +++ b/theme/resources/feather/navigation-2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/navigation.svg b/theme/resources/feather/navigation.svg new file mode 100644 index 0000000..f600a41 --- /dev/null +++ b/theme/resources/feather/navigation.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/octagon.svg b/theme/resources/feather/octagon.svg new file mode 100644 index 0000000..124c548 --- /dev/null +++ b/theme/resources/feather/octagon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/package.svg b/theme/resources/feather/package.svg new file mode 100644 index 0000000..f1e09ee --- /dev/null +++ b/theme/resources/feather/package.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/paperclip.svg b/theme/resources/feather/paperclip.svg new file mode 100644 index 0000000..b1f69b7 --- /dev/null +++ b/theme/resources/feather/paperclip.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/pause-circle.svg b/theme/resources/feather/pause-circle.svg new file mode 100644 index 0000000..f6b1a8d --- /dev/null +++ b/theme/resources/feather/pause-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/pause.svg b/theme/resources/feather/pause.svg new file mode 100644 index 0000000..4e78038 --- /dev/null +++ b/theme/resources/feather/pause.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/pen-tool.svg b/theme/resources/feather/pen-tool.svg new file mode 100644 index 0000000..0d26fa1 --- /dev/null +++ b/theme/resources/feather/pen-tool.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/percent.svg b/theme/resources/feather/percent.svg new file mode 100644 index 0000000..2cb9719 --- /dev/null +++ b/theme/resources/feather/percent.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/phone-call.svg b/theme/resources/feather/phone-call.svg new file mode 100644 index 0000000..8b86660 --- /dev/null +++ b/theme/resources/feather/phone-call.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/phone-forwarded.svg b/theme/resources/feather/phone-forwarded.svg new file mode 100644 index 0000000..aa21bef --- /dev/null +++ b/theme/resources/feather/phone-forwarded.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/phone-incoming.svg b/theme/resources/feather/phone-incoming.svg new file mode 100644 index 0000000..b2d523a --- /dev/null +++ b/theme/resources/feather/phone-incoming.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/phone-missed.svg b/theme/resources/feather/phone-missed.svg new file mode 100644 index 0000000..4950f09 --- /dev/null +++ b/theme/resources/feather/phone-missed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/phone-off.svg b/theme/resources/feather/phone-off.svg new file mode 100644 index 0000000..4d00fb3 --- /dev/null +++ b/theme/resources/feather/phone-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/phone-outgoing.svg b/theme/resources/feather/phone-outgoing.svg new file mode 100644 index 0000000..fea27a3 --- /dev/null +++ b/theme/resources/feather/phone-outgoing.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/phone.svg b/theme/resources/feather/phone.svg new file mode 100644 index 0000000..2a35154 --- /dev/null +++ b/theme/resources/feather/phone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/pie-chart.svg b/theme/resources/feather/pie-chart.svg new file mode 100644 index 0000000..b5bbe67 --- /dev/null +++ b/theme/resources/feather/pie-chart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/play-circle.svg b/theme/resources/feather/play-circle.svg new file mode 100644 index 0000000..8766dc7 --- /dev/null +++ b/theme/resources/feather/play-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/play.svg b/theme/resources/feather/play.svg new file mode 100644 index 0000000..fd76e30 --- /dev/null +++ b/theme/resources/feather/play.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/plus-circle.svg b/theme/resources/feather/plus-circle.svg new file mode 100644 index 0000000..4291ff0 --- /dev/null +++ b/theme/resources/feather/plus-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/plus-square.svg b/theme/resources/feather/plus-square.svg new file mode 100644 index 0000000..c380e24 --- /dev/null +++ b/theme/resources/feather/plus-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/plus.svg b/theme/resources/feather/plus.svg new file mode 100644 index 0000000..703c5b7 --- /dev/null +++ b/theme/resources/feather/plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/pocket.svg b/theme/resources/feather/pocket.svg new file mode 100644 index 0000000..a3b2561 --- /dev/null +++ b/theme/resources/feather/pocket.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/power.svg b/theme/resources/feather/power.svg new file mode 100644 index 0000000..598308f --- /dev/null +++ b/theme/resources/feather/power.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/printer.svg b/theme/resources/feather/printer.svg new file mode 100644 index 0000000..8a9a7ac --- /dev/null +++ b/theme/resources/feather/printer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/radio.svg b/theme/resources/feather/radio.svg new file mode 100644 index 0000000..5abfcd1 --- /dev/null +++ b/theme/resources/feather/radio.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/refresh-ccw.svg b/theme/resources/feather/refresh-ccw.svg new file mode 100644 index 0000000..10cff0e --- /dev/null +++ b/theme/resources/feather/refresh-ccw.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/refresh-cw.svg b/theme/resources/feather/refresh-cw.svg new file mode 100644 index 0000000..06c358d --- /dev/null +++ b/theme/resources/feather/refresh-cw.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/repeat.svg b/theme/resources/feather/repeat.svg new file mode 100644 index 0000000..c7657b0 --- /dev/null +++ b/theme/resources/feather/repeat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/rewind.svg b/theme/resources/feather/rewind.svg new file mode 100644 index 0000000..7b0fa3d --- /dev/null +++ b/theme/resources/feather/rewind.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/rotate-ccw.svg b/theme/resources/feather/rotate-ccw.svg new file mode 100644 index 0000000..ade5dc4 --- /dev/null +++ b/theme/resources/feather/rotate-ccw.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/rotate-cw.svg b/theme/resources/feather/rotate-cw.svg new file mode 100644 index 0000000..83dca35 --- /dev/null +++ b/theme/resources/feather/rotate-cw.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/rss.svg b/theme/resources/feather/rss.svg new file mode 100644 index 0000000..c9a1368 --- /dev/null +++ b/theme/resources/feather/rss.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/save.svg b/theme/resources/feather/save.svg new file mode 100644 index 0000000..46c7299 --- /dev/null +++ b/theme/resources/feather/save.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/scissors.svg b/theme/resources/feather/scissors.svg new file mode 100644 index 0000000..fd0647f --- /dev/null +++ b/theme/resources/feather/scissors.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/search.svg b/theme/resources/feather/search.svg new file mode 100644 index 0000000..8710306 --- /dev/null +++ b/theme/resources/feather/search.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/send.svg b/theme/resources/feather/send.svg new file mode 100644 index 0000000..42ef2a2 --- /dev/null +++ b/theme/resources/feather/send.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/server.svg b/theme/resources/feather/server.svg new file mode 100644 index 0000000..d1f6d48 --- /dev/null +++ b/theme/resources/feather/server.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/settings.svg b/theme/resources/feather/settings.svg new file mode 100644 index 0000000..19c2726 --- /dev/null +++ b/theme/resources/feather/settings.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/share-2.svg b/theme/resources/feather/share-2.svg new file mode 100644 index 0000000..09b1c7b --- /dev/null +++ b/theme/resources/feather/share-2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/share.svg b/theme/resources/feather/share.svg new file mode 100644 index 0000000..df38c14 --- /dev/null +++ b/theme/resources/feather/share.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/shield-off.svg b/theme/resources/feather/shield-off.svg new file mode 100644 index 0000000..18692dd --- /dev/null +++ b/theme/resources/feather/shield-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/shield.svg b/theme/resources/feather/shield.svg new file mode 100644 index 0000000..c7c4841 --- /dev/null +++ b/theme/resources/feather/shield.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/shopping-bag.svg b/theme/resources/feather/shopping-bag.svg new file mode 100644 index 0000000..eaa39e8 --- /dev/null +++ b/theme/resources/feather/shopping-bag.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/shopping-cart.svg b/theme/resources/feather/shopping-cart.svg new file mode 100644 index 0000000..17a40bf --- /dev/null +++ b/theme/resources/feather/shopping-cart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/shuffle.svg b/theme/resources/feather/shuffle.svg new file mode 100644 index 0000000..8cfb5db --- /dev/null +++ b/theme/resources/feather/shuffle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/sidebar.svg b/theme/resources/feather/sidebar.svg new file mode 100644 index 0000000..8ba817e --- /dev/null +++ b/theme/resources/feather/sidebar.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/skip-back.svg b/theme/resources/feather/skip-back.svg new file mode 100644 index 0000000..88d024e --- /dev/null +++ b/theme/resources/feather/skip-back.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/skip-forward.svg b/theme/resources/feather/skip-forward.svg new file mode 100644 index 0000000..f3fdac3 --- /dev/null +++ b/theme/resources/feather/skip-forward.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/slack.svg b/theme/resources/feather/slack.svg new file mode 100644 index 0000000..5d97346 --- /dev/null +++ b/theme/resources/feather/slack.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/slash.svg b/theme/resources/feather/slash.svg new file mode 100644 index 0000000..f4131b8 --- /dev/null +++ b/theme/resources/feather/slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/sliders.svg b/theme/resources/feather/sliders.svg new file mode 100644 index 0000000..19c9385 --- /dev/null +++ b/theme/resources/feather/sliders.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/smartphone.svg b/theme/resources/feather/smartphone.svg new file mode 100644 index 0000000..f7d5ba8 --- /dev/null +++ b/theme/resources/feather/smartphone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/smile.svg b/theme/resources/feather/smile.svg new file mode 100644 index 0000000..24dc8a2 --- /dev/null +++ b/theme/resources/feather/smile.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/speaker.svg b/theme/resources/feather/speaker.svg new file mode 100644 index 0000000..8e7ffda --- /dev/null +++ b/theme/resources/feather/speaker.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/square.svg b/theme/resources/feather/square.svg new file mode 100644 index 0000000..6eabc77 --- /dev/null +++ b/theme/resources/feather/square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/star.svg b/theme/resources/feather/star.svg new file mode 100644 index 0000000..bcdc31a --- /dev/null +++ b/theme/resources/feather/star.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/stop-circle.svg b/theme/resources/feather/stop-circle.svg new file mode 100644 index 0000000..c10d9d4 --- /dev/null +++ b/theme/resources/feather/stop-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/sun.svg b/theme/resources/feather/sun.svg new file mode 100644 index 0000000..7f51b94 --- /dev/null +++ b/theme/resources/feather/sun.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/sunrise.svg b/theme/resources/feather/sunrise.svg new file mode 100644 index 0000000..eff4b1e --- /dev/null +++ b/theme/resources/feather/sunrise.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/sunset.svg b/theme/resources/feather/sunset.svg new file mode 100644 index 0000000..a5a2221 --- /dev/null +++ b/theme/resources/feather/sunset.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/tablet.svg b/theme/resources/feather/tablet.svg new file mode 100644 index 0000000..76f5849 --- /dev/null +++ b/theme/resources/feather/tablet.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/tag.svg b/theme/resources/feather/tag.svg new file mode 100644 index 0000000..b5e495c --- /dev/null +++ b/theme/resources/feather/tag.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/target.svg b/theme/resources/feather/target.svg new file mode 100644 index 0000000..be84b17 --- /dev/null +++ b/theme/resources/feather/target.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/terminal.svg b/theme/resources/feather/terminal.svg new file mode 100644 index 0000000..af459c0 --- /dev/null +++ b/theme/resources/feather/terminal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/thermometer.svg b/theme/resources/feather/thermometer.svg new file mode 100644 index 0000000..33142cc --- /dev/null +++ b/theme/resources/feather/thermometer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/thumbs-down.svg b/theme/resources/feather/thumbs-down.svg new file mode 100644 index 0000000..3e7bcd6 --- /dev/null +++ b/theme/resources/feather/thumbs-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/thumbs-up.svg b/theme/resources/feather/thumbs-up.svg new file mode 100644 index 0000000..226c44d --- /dev/null +++ b/theme/resources/feather/thumbs-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/toggle-left.svg b/theme/resources/feather/toggle-left.svg new file mode 100644 index 0000000..240be29 --- /dev/null +++ b/theme/resources/feather/toggle-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/toggle-right.svg b/theme/resources/feather/toggle-right.svg new file mode 100644 index 0000000..fc6e81c --- /dev/null +++ b/theme/resources/feather/toggle-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/trash-2.svg b/theme/resources/feather/trash-2.svg new file mode 100644 index 0000000..f24d55b --- /dev/null +++ b/theme/resources/feather/trash-2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/trash.svg b/theme/resources/feather/trash.svg new file mode 100644 index 0000000..55650bd --- /dev/null +++ b/theme/resources/feather/trash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/trello.svg b/theme/resources/feather/trello.svg new file mode 100644 index 0000000..b2f599b --- /dev/null +++ b/theme/resources/feather/trello.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/trending-down.svg b/theme/resources/feather/trending-down.svg new file mode 100644 index 0000000..a9d4cfa --- /dev/null +++ b/theme/resources/feather/trending-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/trending-up.svg b/theme/resources/feather/trending-up.svg new file mode 100644 index 0000000..52026a4 --- /dev/null +++ b/theme/resources/feather/trending-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/triangle.svg b/theme/resources/feather/triangle.svg new file mode 100644 index 0000000..274b652 --- /dev/null +++ b/theme/resources/feather/triangle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/truck.svg b/theme/resources/feather/truck.svg new file mode 100644 index 0000000..3389837 --- /dev/null +++ b/theme/resources/feather/truck.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/tv.svg b/theme/resources/feather/tv.svg new file mode 100644 index 0000000..955bbff --- /dev/null +++ b/theme/resources/feather/tv.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/twitter.svg b/theme/resources/feather/twitter.svg new file mode 100644 index 0000000..f8886ec --- /dev/null +++ b/theme/resources/feather/twitter.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/type.svg b/theme/resources/feather/type.svg new file mode 100644 index 0000000..c6b2de3 --- /dev/null +++ b/theme/resources/feather/type.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/umbrella.svg b/theme/resources/feather/umbrella.svg new file mode 100644 index 0000000..dc77c0c --- /dev/null +++ b/theme/resources/feather/umbrella.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/underline.svg b/theme/resources/feather/underline.svg new file mode 100644 index 0000000..044945d --- /dev/null +++ b/theme/resources/feather/underline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/unlock.svg b/theme/resources/feather/unlock.svg new file mode 100644 index 0000000..01dc359 --- /dev/null +++ b/theme/resources/feather/unlock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/upload-cloud.svg b/theme/resources/feather/upload-cloud.svg new file mode 100644 index 0000000..a1db297 --- /dev/null +++ b/theme/resources/feather/upload-cloud.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/upload.svg b/theme/resources/feather/upload.svg new file mode 100644 index 0000000..91eaff7 --- /dev/null +++ b/theme/resources/feather/upload.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/user-check.svg b/theme/resources/feather/user-check.svg new file mode 100644 index 0000000..42f91b2 --- /dev/null +++ b/theme/resources/feather/user-check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/user-minus.svg b/theme/resources/feather/user-minus.svg new file mode 100644 index 0000000..44b75f5 --- /dev/null +++ b/theme/resources/feather/user-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/user-plus.svg b/theme/resources/feather/user-plus.svg new file mode 100644 index 0000000..21460f6 --- /dev/null +++ b/theme/resources/feather/user-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/user-x.svg b/theme/resources/feather/user-x.svg new file mode 100644 index 0000000..0c41a48 --- /dev/null +++ b/theme/resources/feather/user-x.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/user.svg b/theme/resources/feather/user.svg new file mode 100644 index 0000000..7bb5f29 --- /dev/null +++ b/theme/resources/feather/user.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/users.svg b/theme/resources/feather/users.svg new file mode 100644 index 0000000..aacf6b0 --- /dev/null +++ b/theme/resources/feather/users.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/video-off.svg b/theme/resources/feather/video-off.svg new file mode 100644 index 0000000..08ec697 --- /dev/null +++ b/theme/resources/feather/video-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/video.svg b/theme/resources/feather/video.svg new file mode 100644 index 0000000..8ff156a --- /dev/null +++ b/theme/resources/feather/video.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/voicemail.svg b/theme/resources/feather/voicemail.svg new file mode 100644 index 0000000..5d78a8e --- /dev/null +++ b/theme/resources/feather/voicemail.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/volume-1.svg b/theme/resources/feather/volume-1.svg new file mode 100644 index 0000000..150e875 --- /dev/null +++ b/theme/resources/feather/volume-1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/volume-2.svg b/theme/resources/feather/volume-2.svg new file mode 100644 index 0000000..03d521c --- /dev/null +++ b/theme/resources/feather/volume-2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/volume-x.svg b/theme/resources/feather/volume-x.svg new file mode 100644 index 0000000..be44240 --- /dev/null +++ b/theme/resources/feather/volume-x.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/volume.svg b/theme/resources/feather/volume.svg new file mode 100644 index 0000000..53bfe15 --- /dev/null +++ b/theme/resources/feather/volume.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/watch.svg b/theme/resources/feather/watch.svg new file mode 100644 index 0000000..a1099da --- /dev/null +++ b/theme/resources/feather/watch.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/wifi-off.svg b/theme/resources/feather/wifi-off.svg new file mode 100644 index 0000000..79430c3 --- /dev/null +++ b/theme/resources/feather/wifi-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/wifi.svg b/theme/resources/feather/wifi.svg new file mode 100644 index 0000000..2e1a7fd --- /dev/null +++ b/theme/resources/feather/wifi.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/wind.svg b/theme/resources/feather/wind.svg new file mode 100644 index 0000000..82b3646 --- /dev/null +++ b/theme/resources/feather/wind.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/x-circle.svg b/theme/resources/feather/x-circle.svg new file mode 100644 index 0000000..94aad5e --- /dev/null +++ b/theme/resources/feather/x-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/x-octagon.svg b/theme/resources/feather/x-octagon.svg new file mode 100644 index 0000000..8543198 --- /dev/null +++ b/theme/resources/feather/x-octagon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/x-square.svg b/theme/resources/feather/x-square.svg new file mode 100644 index 0000000..7677c38 --- /dev/null +++ b/theme/resources/feather/x-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/x.svg b/theme/resources/feather/x.svg new file mode 100644 index 0000000..7d5875c --- /dev/null +++ b/theme/resources/feather/x.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/youtube.svg b/theme/resources/feather/youtube.svg new file mode 100644 index 0000000..c482438 --- /dev/null +++ b/theme/resources/feather/youtube.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/zap-off.svg b/theme/resources/feather/zap-off.svg new file mode 100644 index 0000000..c636f8b --- /dev/null +++ b/theme/resources/feather/zap-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/zap.svg b/theme/resources/feather/zap.svg new file mode 100644 index 0000000..8fdafa9 --- /dev/null +++ b/theme/resources/feather/zap.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/zoom-in.svg b/theme/resources/feather/zoom-in.svg new file mode 100644 index 0000000..da4572d --- /dev/null +++ b/theme/resources/feather/zoom-in.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/zoom-out.svg b/theme/resources/feather/zoom-out.svg new file mode 100644 index 0000000..fd678d7 --- /dev/null +++ b/theme/resources/feather/zoom-out.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/static/css/light.css b/theme/static/css/light.css new file mode 100644 index 0000000..ca32e8e --- /dev/null +++ b/theme/static/css/light.css @@ -0,0 +1,45 @@ +/* Main colors */ +body { + color: #000; +} + +body > * { + background: #000; + color: #FFF; +} + +a { + color: #FFF; + text-decoration: underline; + font-style: none; +} + +.main1 { + background: #FFF; + color: #000; + overflow: hidden; +} +.main1 a { + color: #000; +} +.main3 { + background: #FFF; + box-shadow: 0 0 1em #000; +} + +/* header */ +header nav li a { + font-style: none; + text-decoration: none; +} +header nav > ul > li { + background: #FFF; +} +header nav > ul > li > div > a { + background: #000; +} + +/* Page */ +.updated, .translations, .translation a { + color: #888; +} diff --git a/theme/static/css/main.css b/theme/static/css/main.css new file mode 100644 index 0000000..f2e9072 --- /dev/null +++ b/theme/static/css/main.css @@ -0,0 +1,82 @@ +/* Main structure */ +html, body { + margin: 0; + padding: 0; + border: 0; +} +html { + height: 100%; +} +body { + min-height: 100%; +} + +body { + display: grid; + grid-template-rows: auto 1fr auto; +} + +body > * { + padding: 0 10%; +} + +.main1 { + overflow: hidden; +} +.main2 { + height: 100%; + min-height: 100%; + margin: -1em; +} +.main3 { + padding: 1em 0; + margin: 0 1em; + min-height: 100%; +} + +/* header */ +header nav ul { + padding: 0; + border: 0; + margin: 0; + list-style: none; + display: block; +} +header nav li { + display: inline-block; + margin: 0; + padding: 0; + border: 0; +} +header nav > ul { + padding-top: 0.25em; + margin-left: -0.5em; +} +header nav > ul > li { + float: left; + margin-left: 0.5em; +} +header nav > ul > li.page { + float: right; +} +header nav > ul > li > div { + margin-bottom: 0.25em; +} +header nav > ul > li > div > a { + display: inline-block; + position: relative; + padding-bottom: 0.25em; + transition: top 0.25s; + top: 0; +} +header nav > ul > li:hover > div > a, header nav > ul > li.active > div > a { + top: -0.25em; +} + +/* page */ +.translations { + float: right; +} +.updated { + font-style: italic; +} diff --git a/theme/templates/base.html b/theme/templates/base.html new file mode 100644 index 0000000..2f9d1d6 --- /dev/null +++ b/theme/templates/base.html @@ -0,0 +1,75 @@ + + + + {% block head %} + {% block title %}{{ SITENAME }}{% endblock title %} + + {% if FEED_ALL_ATOM %} + + {% endif %} + {% if FEED_ALL_RSS %} + + {% endif %} + {% if FEED_ATOM %} + + {% endif %} + {% if FEED_RSS %} + + {% endif %} + {% if CATEGORY_FEED_ATOM and category %} + + {% endif %} + {% if CATEGORY_FEED_RSS and category %} + + {% endif %} + {% if TAG_FEED_ATOM and tag %} + + {% endif %} + {% if TAG_FEED_RSS and tag %} + + {% endif %} + {% endblock head %} + + + + +
+

{{ SITENAME }} {{ SITESUBTITLE }}

+ +
+
+
+
{% block content %}{% endblock %}
+
+
+ + + diff --git a/theme/templates/index.html b/theme/templates/index.html new file mode 100644 index 0000000..2cf9118 --- /dev/null +++ b/theme/templates/index.html @@ -0,0 +1,23 @@ +{% extends "base.html" %} +{% block content %} +
+ {% block content_title %}
Alle Artikel
{% endblock content_title %} + + {% if articles_page.has_other_pages() %} + {% include 'pagination.html' %} + {% endif %} +
+{% endblock content %} diff --git a/theme/templates/page.html b/theme/templates/page.html new file mode 100644 index 0000000..bb8c977 --- /dev/null +++ b/theme/templates/page.html @@ -0,0 +1,30 @@ +{% extends "base.html" %} +{% block html_lang %}{{ page.lang }}{% endblock %} + +{% block title %}{{ SITENAME }} - {{ page.title }}{%endblock%} + +{% block head %} + {{ super() }} + + {% import 'translations.html' as translations with context %} + {% if translations.entry_hreflang(page) %} + {{ translations.entry_hreflang(page) }} + {% endif %} +{% endblock %} + +{% block content %} +
+
+ {% import 'translations.html' as translations with context %} + {{ translations.translations_for(page) }} + {{ page.title }} +
+ {% if page.modified %} +

Zuletzt aktualisiert: {{ page.locale_modified }}

+ {% endif %} + +
+ {{ page.content }} +
+
+{% endblock %} diff --git a/theme/templates/pagination.html b/theme/templates/pagination.html new file mode 100644 index 0000000..942806b --- /dev/null +++ b/theme/templates/pagination.html @@ -0,0 +1,7 @@ +{% if DEFAULT_PAGINATION %} +

{% if articles_page.has_previous() %} + «{% endif %} + Page {{ articles_page.number }} / {{ articles_paginator.num_pages }}{% if articles_page.has_next() %} + »{% endif %} +

+{% endif %} diff --git a/theme/templates/translations.html b/theme/templates/translations.html new file mode 100644 index 0000000..80cc423 --- /dev/null +++ b/theme/templates/translations.html @@ -0,0 +1,18 @@ +{% macro translations_for(article) %} + {% if article.translations %} +
+ {{ article.translations[0].lang }} + {% for translation in article.translations[1:] %} + / {{ translation.lang }} + {% endfor %} +
+ {% endif %} +{% endmacro %} + +{% macro entry_hreflang(entry) %} + {% if entry.translations %} + {% for translation in entry.translations %} + + {% endfor %} + {% endif %} +{% endmacro %} diff --git a/tools/cssfix.py b/tools/cssfix.py new file mode 100755 index 0000000..32df29d --- /dev/null +++ b/tools/cssfix.py @@ -0,0 +1,33 @@ +#!/usr/bin/env python3 + +if __name__ == '__main__': + # Install cssutils + import subprocess + + subprocess.check_call(("pip", "install", "--upgrade", "cssutils")) + + # Run tool + import base64 + import cssutils + import cssutils.scripts + import mimetypes + import os + import sys + + for i in sys.argv[1:]: + file = cssutils.parseFile(i) + + # Inline urls + def urlInlineFunction(url): + tmp = os.path.join(os.path.split(i)[0], url) + try: + urlType = mimetypes.guess_type(tmp)[0] + return (b"data:" + urlType.encode() + b";base64," + base64.encodebytes(open(tmp, "rb").read()).replace(b"\n", b"")).decode() + except Exception as e: + print("Can't use file: " + repr(url)) + print(e) + return url + cssutils.replaceUrls(file, urlInlineFunction, True) + + with open(i, "wb") as tmp: + tmp.write(cssutils.scripts.csscombine(path=i, cssText=file.cssText, minify=True))