updates layout

This commit is contained in:
Tyrel Souza 2023-06-24 01:01:32 -04:00
parent 5c8abfbb32
commit 17a0476f41
No known key found for this signature in database
GPG Key ID: F3614B02ACBE438E
3 changed files with 73 additions and 10 deletions

View File

@ -16,14 +16,8 @@ MENUITEMS = [
('Categories', f'{SITEBASE}/categories.html'),
]
LINKS = (
('All My Accounts', 'https://tyrel.dev/links'),
('Book Me', 'https://cal.com/tyrelsouza'),
('Code', 'https://gitea.tyrel.dev/tyrel'),
('Photos', 'https://www.flickr.com/photos/tyrelsouza/albums'),
('LinkedIN', 'https://www.linkedin.com/in/tyrel-souza/'),
)
SOCIAL = (
('Instagram', 'https://www.instagram.com/tyrelsouza'),
('GoodReads', 'https://www.goodreads.com/user/show/24381583-tyrel-souza'),
)
PATH = 'content'
@ -71,3 +65,4 @@ DEFAULT_METADATA = {
}
THEME = "./themes/solarized"
DISPLAY_PAGES_ON_MENU=True

View File

@ -69,13 +69,12 @@
{% endif %}
{% if SOCIAL or FEED_ALL_ATOM or FEED_ALL_RSS %}
<div class="social">
<h2>{{ SOCIAL_WIDGET_NAME | default('SOCIAL LINKS') }}</h2>
<h2>Syndication</h2>
<ul>
{% for name, link in SOCIAL %}
<li><a href="{{ link }}">{{ name }}</a></li>
{% endfor %}
<!-- <li><a rel="me" href="https://social.tyrel.dev/tyrel">Fediverse</a></li> -->
<li><a rel="me" href="https://pixelfed.social/@tyrel">Pixelfed</a></li>
{% if FEED_ALL_ATOM %}
<li><a href="{{ FEED_DOMAIN }}/{% if FEED_ALL_ATOM_URL %}{{ FEED_ALL_ATOM_URL }}{% else %}{{ FEED_ALL_ATOM }}{% endif %}" type="application/atom+xml" rel="alternate">Atom Feed</a></li>
{% endif %}

View File

@ -0,0 +1,69 @@
from pathlib import Path
pwd = Path.cwd()
AUTHOR = 'Tyrel Souza'
SITENAME = "Tyrel's Blog"
TWITTER_USERNAME = 'tyrelsouza'
SITEURL = ''
SITESUBTITLE = 'Code, Flying, Tech, Automation'
SITEBASE = "/blog"
MENUITEMS = [
('Home', f'{SITEBASE}/'),
('Tags', f'{SITEBASE}/tags.html'),
('Categories', f'{SITEBASE}/categories.html'),
]
LINKS = (
('All My Accounts', 'https://tyrel.dev/links'),
('Book Me', 'https://cal.com/tyrelsouza'),
)
PATH = 'content'
TIMEZONE = 'America/New_York'
DEFAULT_LANG = 'en'
# Feed generation is usually not desired when developing
# FEED_DOMAISITEURL
FEED_ALL_ATOM = None
CATEGORY_FEED_ATOM = None
TRANSLATION_FEED_ATOM = None
AUTHOR_FEED_ATOM = None
AUTHOR_FEED_RSS = None
FEED_ATOM = 'tyrel-dev.atom.xml'
#FEED_RSS = 'tyrel-dev.rss'
FEED_ALL_ATOM = 'tyrel-dev.all.xml'
#FEED_ALL_RSS = 'tyrel-dev.all.rss'
PLUGINS = ["webassets"]
DEFAULT_PAGINATION = False
DISPLAY_CATEGORIES_ON_MENU = False
DELETE_OUTPUT_DIRECTORY = True
STATIC_PATHS = (
'images',
'extras',
)
ARTICLE_PATHS = ['blog', ]
ARTICLE_SAVE_AS = '{date:%Y}/{date:%m}/{slug}.html'
ARTICLE_URL = '{date:%Y}/{date:%m}/{slug}.html'
YEAR_ARCHIVE_SAVE_AS = 'posts/{date:%Y}/index.html'
MONTH_ARCHIVE_URL = 'posts/{date:%Y}/{date:%m}/index.html'
DEFAULT_METADATA = {
'status': 'draft',
'extras/favicon.ico': {'path': 'favicon.ico'},
}
THEME = "./themes/solarized"
DISPLAY_PAGES_ON_MENU=True