diff --git a/.gitignore b/.gitignore
index 748deb9..bfb1841 100644
--- a/.gitignore
+++ b/.gitignore
@@ -6,3 +6,4 @@
*.out
*.py[cod]
output
+.vscode
diff --git a/content/pages/gratitude.rst b/content/pages/gratitude.rst
index 5475af1..4550c28 100644
--- a/content/pages/gratitude.rst
+++ b/content/pages/gratitude.rst
@@ -3,7 +3,7 @@ Gratitude
:title: Gratitude
-The theme for this site is courtesy of `Smashing Magazine`_.
+The theme for this site is courtesy of `Luca Fedrizzi`_.
The Pelican logo was designed by Derry Livenski and is available under a
`Creative Commons`_ license via the download links below:
@@ -13,7 +13,7 @@ The Pelican logo was designed by Derry Livenski and is available under a
SVG_ PNG_ PDF_
-.. _`Smashing Magazine`: http://coding.smashingmagazine.com/2009/08/04/designing-a-html-5-layout-from-scratch/
+.. _`Luca Fedrizzi`: https://twitter.com/lc_fd
.. _`Creative Commons`: https://creativecommons.org/licenses/by/4.0/
.. |logo| image:: {static}/logo/pelican-logo-small.png
diff --git a/content/pages/index.rst b/content/pages/index.rst
deleted file mode 100644
index 976e62a..0000000
--- a/content/pages/index.rst
+++ /dev/null
@@ -1,62 +0,0 @@
-Pelican Static Site Generator, Powered by Python
-================================================
-
-:url:
-:save_as: index.html
-
-Pelican is a static site generator that requires no database or server-side logic.
-
-The project is maintained by `Justin Mayer`_ (`@jmayer`_) and other members of
-the `Pelican dev team`_.
-
-Some of Pelican’s features include:
-
-* Write content in reStructuredText_ or Markdown_ markup
-* Completely static output is easy to host anywhere
-* Themes_ that can be customized via Jinja_ templates
-* Publish content in multiple languages
-* Atom/RSS feeds
-* Code syntax highlighting
-* Import from WordPress, RSS feeds, and other services
-* Modular plugin system and corresponding `plugin repository`_
-
-… and many other features.
-
-Next Steps
-----------
-
-Learn more about the Pelican static site generator via:
-
-* `Pelican news`_
-* the extensive documentation_
-* `source code on GitHub`_
-* `Pelican on Twitter`_
-
-Support Pelican Development
----------------------------
-
-Following are ways you can support Pelican’s development:
-
-* donate_ to Pelican Dev Team
-* follow `@jmayer`_ and `Pelican on Twitter`_
-* contribute pull requests, help triage issues, and improve documentation
-
-|donate-fosspay| |donate-liberapay|
-
-.. _`Justin Mayer`: https://justinmayer.com/
-.. _`@jmayer`: https://twitter.com/jmayer
-.. _`Pelican dev team`: https://github.com/orgs/getpelican/people
-.. _reStructuredText: http://docutils.sourceforge.net/rst.html
-.. _Markdown: http://daringfireball.net/projects/markdown/
-.. _Jinja: http://jinja.pocoo.org/
-.. _Themes: https://github.com/getpelican/pelican-themes
-.. _`plugin repository`: https://github.com/getpelican/pelican-plugins
-.. _`Pelican news`: http://blog.getpelican.com/category/news.html
-.. _documentation: http://docs.getpelican.com/
-.. _`source code on GitHub`: https://github.com/getpelican/pelican
-.. _`Pelican on Twitter`: https://twitter.com/getpelican
-.. _donate: https://donate.getpelican.com
-.. |donate-fosspay| image:: https://badgen.net/badge/fosspay/donate/yellow
- :target: https://donate.getpelican.com
-.. |donate-liberapay| image:: https://badgen.net/badge/liberapay/donate/yellow
- :target: https://liberapay.com/Pelican/donate
diff --git a/input.css b/input.css
new file mode 100644
index 0000000..2715736
--- /dev/null
+++ b/input.css
@@ -0,0 +1,47 @@
+@tailwind base;
+@tailwind components;
+@tailwind utilities;
+
+@layer components {
+ .btn {
+ @apply rounded-lg px-8 py-3;
+ @apply inline-block;
+ @apply no-underline;
+ }
+ .btn_primary {
+ @apply bg-primary;
+ @apply text-white hover:text-white;
+ }
+ .btn_white {
+ @apply bg-white hover:text-primary;
+ }
+
+ .text_gradient {
+ @apply text-transparent bg-clip-text bg-gradient-to-r from-primary to-primary-shade;
+ }
+
+ .inline_code {
+ @apply bg-primary-100 rounded-sm font-medium px-2;
+ }
+
+ .fluctuate_animation {
+ animation: fluctuate 8s infinite;
+ }
+
+ a {
+ @apply underline text-primary;
+ @apply transition-colors hover:text-primary-shade;
+ }
+}
+
+@keyframes fluctuate {
+ 0% {
+ transform: translateY(-20px);
+ }
+ 50% {
+ transform: translateY(+20px);
+ }
+ 100% {
+ transform: translateY(-20px);
+ }
+}
diff --git a/pelicanconf.py b/pelicanconf.py
index f9ac167..20dde9c 100644
--- a/pelicanconf.py
+++ b/pelicanconf.py
@@ -1,12 +1,12 @@
import logging
AUTHOR = "Pelican Contributors"
-SITENAME = "Pelican Development Blog"
+SITENAME = "Pelican – A Python Static Site Generator"
SITEURL = ""
PATH = "content"
-THEME = "themes/notmyidea"
+THEME = "themes/getpelican"
CACHE_CONTENT = False
LOAD_CONTENT_CACHE = False
@@ -16,6 +16,8 @@
DEFAULT_LANG = "en"
LOCALE = "en_US.UTF-8"
+TEMPLATE_PAGES = {"homepage.html": "index.html"}
+
MENUITEMS = (
("documentation", "https://docs.getpelican.com"),
("contribute", "https://donate.getpelican.com"),
@@ -68,3 +70,25 @@
},
"output_format": "html5",
}
+
+TAILWIND = {
+ "version": "3.0.0",
+ "plugins": [
+ "@tailwindcss/typography",
+ "@tailwindcss/line-clamp",
+ ],
+}
+
+INDEX_SAVE_AS = "blog/index.html"
+PAGE_URL = "{slug}"
+PAGE_SAVE_AS = "{slug}/index.html"
+ARTICLE_SAVE_AS = 'blog/{slug}/index.html'
+ARTICLE_URL = 'blog/{slug}'
+CATEGORIES_URL = 'blog/categories/'
+CATEGORIES_SAVE_AS = 'blog/categories/index.html'
+CATEGORY_URL = 'blog/category/{slug}/index.html'
+CATEGORY_SAVE_AS = 'blog/category/{slug}/index.html'
+TAGS_URL = 'blog/tags/'
+TAGS_SAVE_AS = 'blog/tags/index.html'
+TAG_URL = 'blog/tag/{slug}/index.html'
+TAG_SAVE_AS = 'blog/tag/{slug}/index.html'
diff --git a/publishconf.py b/publishconf.py
index 189efcc..f37385e 100644
--- a/publishconf.py
+++ b/publishconf.py
@@ -2,6 +2,6 @@
sys.path.append(".")
from pelicanconf import * # noqa
-SITEURL = "https://blog.getpelican.com"
+SITEURL = "https://getpelican.com"
DELETE_OUTPUT_DIRECTORY = True
diff --git a/pyproject.toml b/pyproject.toml
new file mode 100644
index 0000000..5aced1c
--- /dev/null
+++ b/pyproject.toml
@@ -0,0 +1,22 @@
+[tool.poetry]
+name = "pelican-blog"
+version = "0.1.0"
+description = "The Pelican Blog"
+authors = ["Luca Fedrizzi <9001053+fedriz@users.noreply.github.com>"]
+readme = "README.rst"
+
+[tool.poetry.dependencies]
+python = ">=3.10,<4.0"
+pelican-tailwindcss = ">=0.2.0"
+djlint = ">=1.7.0"
+pelican = {extras = ["markdown"], version = ">=4.8.0"}
+
+
+[build-system]
+requires = ["poetry-core"]
+build-backend = "poetry.core.masonry.api"
+
+[tool.djlint]
+profile="jinja"
+indent=2
+ignore="T028,H006"
diff --git a/tailwind.config.js b/tailwind.config.js
new file mode 100644
index 0000000..5d5177d
--- /dev/null
+++ b/tailwind.config.js
@@ -0,0 +1,22 @@
+/** @type {import('tailwindcss').Config} */
+module.exports = {
+ content: ["./themes/**/*.html", "./themes/**/*.js"],
+ theme: {
+ extend: {
+ fontFamily: {
+ sans: ["Poppins", "sans-serif"],
+ },
+ colors: {
+ "primary-100": "#F0F9F8",
+ "primary-200": "#90D4D1",
+ "primary-300": "#23BDD2",
+ primary: "#14A0C4",
+ "primary-shade": "#a1d9e7",
+ },
+ },
+ },
+ plugins: [
+ require("@tailwindcss/typography"),
+ require("@tailwindcss/line-clamp"),
+ ],
+};
diff --git a/themes/getpelican/static/css/fonts.css b/themes/getpelican/static/css/fonts.css
new file mode 100644
index 0000000..98fa1aa
--- /dev/null
+++ b/themes/getpelican/static/css/fonts.css
@@ -0,0 +1,129 @@
+/* poppins-100 - latin */
+@font-face {
+ font-family: "Poppins";
+ font-style: normal;
+ font-weight: 100;
+ src: url("/theme/fonts/poppins/Poppins-Thin.ttf") format("truetype");
+}
+/* poppins-100italic - latin */
+@font-face {
+ font-family: "Poppins";
+ font-style: italic;
+ font-weight: 100;
+ src: url("/theme/fonts/poppins/Poppins-ThinItalic.ttf") format("truetype");
+}
+/* poppins-200 - latin */
+@font-face {
+ font-family: "Poppins";
+ font-style: normal;
+ font-weight: 200;
+ src: url("/theme/fonts/poppins/Poppins-ExtraLight.ttf") format("truetype");
+}
+/* poppins-200italic - latin */
+@font-face {
+ font-family: "Poppins";
+ font-style: italic;
+ font-weight: 200;
+ src: url("/theme/fonts/poppins/Poppins-ExtraLightItalic.ttf")
+ format("truetype");
+}
+/* poppins-300 - latin */
+@font-face {
+ font-family: "Poppins";
+ font-style: normal;
+ font-weight: 300;
+ src: url("/theme/fonts/poppins/Poppins-Light.ttf") format("truetype");
+}
+/* poppins-300italic - latin */
+@font-face {
+ font-family: "Poppins";
+ font-style: italic;
+ font-weight: 300;
+ src: url("/theme/fonts/poppins/Poppins-LightItalic.ttf") format("truetype");
+}
+/* poppins-regular - latin */
+@font-face {
+ font-family: "Poppins";
+ font-style: normal;
+ font-weight: 400;
+ src: url("/theme/fonts/poppins/Poppins-Regular.ttf") format("truetype");
+}
+/* poppins-italic - latin */
+@font-face {
+ font-family: "Poppins";
+ font-style: italic;
+ font-weight: 400;
+ src: url("/theme/fonts/poppins/Poppins-Italic.ttf") format("truetype");
+}
+/* poppins-500 - latin */
+@font-face {
+ font-family: "Poppins";
+ font-style: normal;
+ font-weight: 500;
+ src: url("/theme/fonts/poppins/Poppins-Medium.ttf") format("truetype");
+}
+/* poppins-500italic - latin */
+@font-face {
+ font-family: "Poppins";
+ font-style: italic;
+ font-weight: 500;
+ src: url("/theme/fonts/poppins/Poppins-MediumItalic.ttf") format("truetype");
+}
+/* poppins-600 - latin */
+@font-face {
+ font-family: "Poppins";
+ font-style: normal;
+ font-weight: 600;
+ src: url("/theme/fonts/poppins/Poppins-SemiBold.ttf") format("truetype");
+}
+/* poppins-600italic - latin */
+@font-face {
+ font-family: "Poppins";
+ font-style: italic;
+ font-weight: 600;
+ src: url("/theme/fonts/poppins/Poppins-SemiBoldItalic.ttf")
+ format("truetype");
+}
+/* poppins-700 - latin */
+@font-face {
+ font-family: "Poppins";
+ font-style: normal;
+ font-weight: 700;
+ src: url("/theme/fonts/poppins/Poppins-Bold.ttf") format("truetype");
+}
+/* poppins-700italic - latin */
+@font-face {
+ font-family: "Poppins";
+ font-style: italic;
+ font-weight: 700;
+ src: url("/theme/fonts/poppins/Poppins-BoldItalic.ttf") format("truetype");
+}
+/* poppins-800 - latin */
+@font-face {
+ font-family: "Poppins";
+ font-style: normal;
+ font-weight: 800;
+ src: url("/theme/fonts/poppins/Poppins-ExtraBold.ttf") format("truetype");
+}
+/* poppins-800italic - latin */
+@font-face {
+ font-family: "Poppins";
+ font-style: italic;
+ font-weight: 800;
+ src: url("/theme/fonts/poppins/Poppins-ExtraBoldItalic.ttf")
+ format("truetype");
+}
+/* poppins-900 - latin */
+@font-face {
+ font-family: "Poppins";
+ font-style: normal;
+ font-weight: 900;
+ src: url("/theme/fonts/poppins/Poppins-Black.ttf") format("truetype");
+}
+/* poppins-900italic - latin */
+@font-face {
+ font-family: "Poppins";
+ font-style: italic;
+ font-weight: 900;
+ src: url("/theme/fonts/poppins/Poppins-BlackItalic.ttf") format("truetype");
+}
diff --git a/themes/getpelican/static/fonts/poppins/OFL.txt b/themes/getpelican/static/fonts/poppins/OFL.txt
new file mode 100644
index 0000000..246c977
--- /dev/null
+++ b/themes/getpelican/static/fonts/poppins/OFL.txt
@@ -0,0 +1,93 @@
+Copyright 2020 The Poppins Project Authors (https://github.com/itfoundry/Poppins)
+
+This Font Software is licensed under the SIL Open Font License, Version 1.1.
+This license is copied below, and is also available with a FAQ at:
+http://scripts.sil.org/OFL
+
+
+-----------------------------------------------------------
+SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
+-----------------------------------------------------------
+
+PREAMBLE
+The goals of the Open Font License (OFL) are to stimulate worldwide
+development of collaborative font projects, to support the font creation
+efforts of academic and linguistic communities, and to provide a free and
+open framework in which fonts may be shared and improved in partnership
+with others.
+
+The OFL allows the licensed fonts to be used, studied, modified and
+redistributed freely as long as they are not sold by themselves. The
+fonts, including any derivative works, can be bundled, embedded,
+redistributed and/or sold with any software provided that any reserved
+names are not used by derivative works. The fonts and derivatives,
+however, cannot be released under any other type of license. The
+requirement for fonts to remain under this license does not apply
+to any document created using the fonts or their derivatives.
+
+DEFINITIONS
+"Font Software" refers to the set of files released by the Copyright
+Holder(s) under this license and clearly marked as such. This may
+include source files, build scripts and documentation.
+
+"Reserved Font Name" refers to any names specified as such after the
+copyright statement(s).
+
+"Original Version" refers to the collection of Font Software components as
+distributed by the Copyright Holder(s).
+
+"Modified Version" refers to any derivative made by adding to, deleting,
+or substituting -- in part or in whole -- any of the components of the
+Original Version, by changing formats or by porting the Font Software to a
+new environment.
+
+"Author" refers to any designer, engineer, programmer, technical
+writer or other person who contributed to the Font Software.
+
+PERMISSION & CONDITIONS
+Permission is hereby granted, free of charge, to any person obtaining
+a copy of the Font Software, to use, study, copy, merge, embed, modify,
+redistribute, and sell modified and unmodified copies of the Font
+Software, subject to the following conditions:
+
+1) Neither the Font Software nor any of its individual components,
+in Original or Modified Versions, may be sold by itself.
+
+2) Original or Modified Versions of the Font Software may be bundled,
+redistributed and/or sold with any software, provided that each copy
+contains the above copyright notice and this license. These can be
+included either as stand-alone text files, human-readable headers or
+in the appropriate machine-readable metadata fields within text or
+binary files as long as those fields can be easily viewed by the user.
+
+3) No Modified Version of the Font Software may use the Reserved Font
+Name(s) unless explicit written permission is granted by the corresponding
+Copyright Holder. This restriction only applies to the primary font name as
+presented to the users.
+
+4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
+Software shall not be used to promote, endorse or advertise any
+Modified Version, except to acknowledge the contribution(s) of the
+Copyright Holder(s) and the Author(s) or with their explicit written
+permission.
+
+5) The Font Software, modified or unmodified, in part or in whole,
+must be distributed entirely under this license, and must not be
+distributed under any other license. The requirement for fonts to
+remain under this license does not apply to any document created
+using the Font Software.
+
+TERMINATION
+This license becomes null and void if any of the above conditions are
+not met.
+
+DISCLAIMER
+THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
+OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
+COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
+INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
+DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
+OTHER DEALINGS IN THE FONT SOFTWARE.
diff --git a/themes/getpelican/static/fonts/poppins/Poppins-Black.ttf b/themes/getpelican/static/fonts/poppins/Poppins-Black.ttf
new file mode 100644
index 0000000..71c0f99
Binary files /dev/null and b/themes/getpelican/static/fonts/poppins/Poppins-Black.ttf differ
diff --git a/themes/getpelican/static/fonts/poppins/Poppins-BlackItalic.ttf b/themes/getpelican/static/fonts/poppins/Poppins-BlackItalic.ttf
new file mode 100644
index 0000000..7aeb58b
Binary files /dev/null and b/themes/getpelican/static/fonts/poppins/Poppins-BlackItalic.ttf differ
diff --git a/themes/getpelican/static/fonts/poppins/Poppins-Bold.ttf b/themes/getpelican/static/fonts/poppins/Poppins-Bold.ttf
new file mode 100644
index 0000000..00559ee
Binary files /dev/null and b/themes/getpelican/static/fonts/poppins/Poppins-Bold.ttf differ
diff --git a/themes/getpelican/static/fonts/poppins/Poppins-BoldItalic.ttf b/themes/getpelican/static/fonts/poppins/Poppins-BoldItalic.ttf
new file mode 100644
index 0000000..e61e8e8
Binary files /dev/null and b/themes/getpelican/static/fonts/poppins/Poppins-BoldItalic.ttf differ
diff --git a/themes/getpelican/static/fonts/poppins/Poppins-ExtraBold.ttf b/themes/getpelican/static/fonts/poppins/Poppins-ExtraBold.ttf
new file mode 100644
index 0000000..df70936
Binary files /dev/null and b/themes/getpelican/static/fonts/poppins/Poppins-ExtraBold.ttf differ
diff --git a/themes/getpelican/static/fonts/poppins/Poppins-ExtraBoldItalic.ttf b/themes/getpelican/static/fonts/poppins/Poppins-ExtraBoldItalic.ttf
new file mode 100644
index 0000000..14d2b37
Binary files /dev/null and b/themes/getpelican/static/fonts/poppins/Poppins-ExtraBoldItalic.ttf differ
diff --git a/themes/getpelican/static/fonts/poppins/Poppins-ExtraLight.ttf b/themes/getpelican/static/fonts/poppins/Poppins-ExtraLight.ttf
new file mode 100644
index 0000000..e76ec69
Binary files /dev/null and b/themes/getpelican/static/fonts/poppins/Poppins-ExtraLight.ttf differ
diff --git a/themes/getpelican/static/fonts/poppins/Poppins-ExtraLightItalic.ttf b/themes/getpelican/static/fonts/poppins/Poppins-ExtraLightItalic.ttf
new file mode 100644
index 0000000..89513d9
Binary files /dev/null and b/themes/getpelican/static/fonts/poppins/Poppins-ExtraLightItalic.ttf differ
diff --git a/themes/getpelican/static/fonts/poppins/Poppins-Italic.ttf b/themes/getpelican/static/fonts/poppins/Poppins-Italic.ttf
new file mode 100644
index 0000000..12b7b3c
Binary files /dev/null and b/themes/getpelican/static/fonts/poppins/Poppins-Italic.ttf differ
diff --git a/themes/getpelican/static/fonts/poppins/Poppins-Light.ttf b/themes/getpelican/static/fonts/poppins/Poppins-Light.ttf
new file mode 100644
index 0000000..bc36bcc
Binary files /dev/null and b/themes/getpelican/static/fonts/poppins/Poppins-Light.ttf differ
diff --git a/themes/getpelican/static/fonts/poppins/Poppins-LightItalic.ttf b/themes/getpelican/static/fonts/poppins/Poppins-LightItalic.ttf
new file mode 100644
index 0000000..9e70be6
Binary files /dev/null and b/themes/getpelican/static/fonts/poppins/Poppins-LightItalic.ttf differ
diff --git a/themes/getpelican/static/fonts/poppins/Poppins-Medium.ttf b/themes/getpelican/static/fonts/poppins/Poppins-Medium.ttf
new file mode 100644
index 0000000..6bcdcc2
Binary files /dev/null and b/themes/getpelican/static/fonts/poppins/Poppins-Medium.ttf differ
diff --git a/themes/getpelican/static/fonts/poppins/Poppins-MediumItalic.ttf b/themes/getpelican/static/fonts/poppins/Poppins-MediumItalic.ttf
new file mode 100644
index 0000000..be67410
Binary files /dev/null and b/themes/getpelican/static/fonts/poppins/Poppins-MediumItalic.ttf differ
diff --git a/themes/getpelican/static/fonts/poppins/Poppins-Regular.ttf b/themes/getpelican/static/fonts/poppins/Poppins-Regular.ttf
new file mode 100644
index 0000000..9f0c71b
Binary files /dev/null and b/themes/getpelican/static/fonts/poppins/Poppins-Regular.ttf differ
diff --git a/themes/getpelican/static/fonts/poppins/Poppins-SemiBold.ttf b/themes/getpelican/static/fonts/poppins/Poppins-SemiBold.ttf
new file mode 100644
index 0000000..74c726e
Binary files /dev/null and b/themes/getpelican/static/fonts/poppins/Poppins-SemiBold.ttf differ
diff --git a/themes/getpelican/static/fonts/poppins/Poppins-SemiBoldItalic.ttf b/themes/getpelican/static/fonts/poppins/Poppins-SemiBoldItalic.ttf
new file mode 100644
index 0000000..3e6c942
Binary files /dev/null and b/themes/getpelican/static/fonts/poppins/Poppins-SemiBoldItalic.ttf differ
diff --git a/themes/getpelican/static/fonts/poppins/Poppins-Thin.ttf b/themes/getpelican/static/fonts/poppins/Poppins-Thin.ttf
new file mode 100644
index 0000000..03e7366
Binary files /dev/null and b/themes/getpelican/static/fonts/poppins/Poppins-Thin.ttf differ
diff --git a/themes/getpelican/static/fonts/poppins/Poppins-ThinItalic.ttf b/themes/getpelican/static/fonts/poppins/Poppins-ThinItalic.ttf
new file mode 100644
index 0000000..e26db5d
Binary files /dev/null and b/themes/getpelican/static/fonts/poppins/Poppins-ThinItalic.ttf differ
diff --git a/themes/getpelican/static/img/fortressa-logo.svg b/themes/getpelican/static/img/fortressa-logo.svg
new file mode 100644
index 0000000..082a031
--- /dev/null
+++ b/themes/getpelican/static/img/fortressa-logo.svg
@@ -0,0 +1,19 @@
+
+
+
diff --git a/themes/getpelican/static/img/logo.svg b/themes/getpelican/static/img/logo.svg
new file mode 100644
index 0000000..33bf617
--- /dev/null
+++ b/themes/getpelican/static/img/logo.svg
@@ -0,0 +1,25 @@
+
+
+
diff --git a/themes/getpelican/static/img/pelican-2.png b/themes/getpelican/static/img/pelican-2.png
new file mode 100644
index 0000000..d09d2b1
Binary files /dev/null and b/themes/getpelican/static/img/pelican-2.png differ
diff --git a/themes/getpelican/static/img/pelican-3.png b/themes/getpelican/static/img/pelican-3.png
new file mode 100644
index 0000000..9888e89
Binary files /dev/null and b/themes/getpelican/static/img/pelican-3.png differ
diff --git a/themes/getpelican/static/img/pelican-4.png b/themes/getpelican/static/img/pelican-4.png
new file mode 100644
index 0000000..d67dbab
Binary files /dev/null and b/themes/getpelican/static/img/pelican-4.png differ
diff --git a/themes/getpelican/static/img/pelican.png b/themes/getpelican/static/img/pelican.png
new file mode 100644
index 0000000..3cb3049
Binary files /dev/null and b/themes/getpelican/static/img/pelican.png differ
diff --git a/themes/notmyidea/templates/archives.html b/themes/getpelican/templates/archives.html
similarity index 100%
rename from themes/notmyidea/templates/archives.html
rename to themes/getpelican/templates/archives.html
diff --git a/themes/getpelican/templates/article.html b/themes/getpelican/templates/article.html
new file mode 100644
index 0000000..03c2409
--- /dev/null
+++ b/themes/getpelican/templates/article.html
@@ -0,0 +1,21 @@
+{% extends "base.html" %}
+{% block title %}
+ {{ article.title|striptags }}
+{% endblock title %}
+{% block content %}
+
+
+
+
+ {% if articles %}
+ {% for article in articles_page.object_list %}
+ {# First item #}
+ {% if loop.first and not articles_page.has_previous() %}
+ {% include "./includes/featured_article.html" %}
+ {% if loop.length > 1 %}
+
+ {% if articles %}
+ {% for article in articles_page.object_list %}
+ {# First item #}
+ {% if loop.first and not articles_page.has_previous() %}
+ {% include "./includes/featured_article.html" %}
+ {% if loop.length > 1 %}
+
+ {% import 'translations.html' as translations with context %}
+ {{ translations.translations_for(page) }}
+ {% if PDF_PROCESSOR %}
+ get
+ the pdf
+ {% endif %}
+
+
{{ page.content }}
+
+{% endblock content %}
diff --git a/themes/getpelican/templates/pagination.html b/themes/getpelican/templates/pagination.html
new file mode 100644
index 0000000..bdb5697
--- /dev/null
+++ b/themes/getpelican/templates/pagination.html
@@ -0,0 +1,19 @@
+{% if DEFAULT_PAGINATION %}
+ {% set first_page = articles_paginator.page(1) %}
+ {% set last_page = articles_paginator.page(articles_paginator.num_pages) %}
+
Comments !
- - -