This commit is contained in:
Tyrel Souza 2024-08-26 11:40:05 -04:00
parent 4720745382
commit b569277518
No known key found for this signature in database
GPG Key ID: F3614B02ACBE438E
5 changed files with 9 additions and 10 deletions

View File

@ -4,7 +4,7 @@ Blogroll
:author: tyrel :author: tyrel
:category: Blogroll :category: Blogroll
:slug: blogroll :slug: blogroll
:status: draft :status: published
* Blogs I Read * Blogs I Read
@ -16,6 +16,7 @@ Blogroll
* `Julia Evans <http://jvns.ca>`_ * `Julia Evans <http://jvns.ca>`_
* `Nik Kantar <https://www.nkantar.com>`_ * `Nik Kantar <https://www.nkantar.com>`_
* `Sam.Codes <https://blog.sam.codes/>`_ * `Sam.Codes <https://blog.sam.codes/>`_
* `Steven Leibrock <https://ste5e.site/>`_
* `Stories by Jess Shapiro on Medium <https://medium.com/@transgingerjess?source=rss-44663d5275a4------2>`_ * `Stories by Jess Shapiro on Medium <https://medium.com/@transgingerjess?source=rss-44663d5275a4------2>`_
* `The Industrious Rabbit - Blog <https://theindustriousrabbit.com>`_ * `The Industrious Rabbit - Blog <https://theindustriousrabbit.com>`_
* `The Industrious Rabbit - Videos <https://www.youtube.com/channel/UCV37kgKv2uoFimfxaFKoXOA>`_ * `The Industrious Rabbit - Videos <https://www.youtube.com/channel/UCV37kgKv2uoFimfxaFKoXOA>`_

View File

@ -13,8 +13,8 @@ SITEBASE = "/blog"
MENU_INTERNAL_PAGES = [ MENU_INTERNAL_PAGES = [
('Archive', 'archives.html', f'archives.html'), ('Archive', 'archives.html', f'archives.html'),
('Tags', 'tags.html', f'tags.html'), #('Tags', 'tags.html', f'tags.html'),
('Categories', 'categories.html', f'categories.html'), #('Categories', 'categories.html', f'categories.html'),
] ]
MENUITEMS = [ MENUITEMS = [
@ -73,7 +73,8 @@ SOCIAL = ()
DISPLAY_PAGES_ON_MENU=True DISPLAY_PAGES_ON_MENU=True
LANDING_PAGE_ABOUT=True LANDING_PAGE_ABOUT=True
THEME = pwd / "themes" / "blue-penguin-dark" THEME = pwd / "themes" / "blue-penguin-dark"
THEME = pwd / "themes" / "solarized" #THEME = pwd / "themes" / "solarized"
PAGINATED_TEMPLATES = {'index': 10, 'tag': 4, 'category': 4, 'author': None} PAGINATED_TEMPLATES = {'index': 10, 'tag': 10, 'category': 10, 'author': None}
DISPLAY_HOME = False DISPLAY_HOME = False
SUMMARY_MAX_LENGTH = 400

View File

@ -1 +1 @@
<script async defer data-website-id="99b8ebba-c085-4c3e-972f-968c9e052eea" src="https://analytics.tyrel.pw/umami.js"></script> <!-- <script async defer data-website-id="99b8ebba-c085-4c3e-972f-968c9e052eea" src="https://analytics.tyrel.pw/umami.js"></script> -->

View File

@ -77,7 +77,6 @@
<h2 class="site_subtitle">{{ SITESUBTITLE }}</h2> <h2 class="site_subtitle">{{ SITESUBTITLE }}</h2>
{% endif %} {% endif %}
</div> </div>
</div>
{% if DISPLAY_MENU or DISPLAY_MENU is not defined %} {% if DISPLAY_MENU or DISPLAY_MENU is not defined %}
<nav style="overflow: hidden;"> <nav style="overflow: hidden;">
<ul> <ul>

View File

@ -76,12 +76,10 @@ p {
border: 1px solid #BCBEC0; border: 1px solid #BCBEC0;
padding: 0.5rem; padding: 0.5rem;
margin: 0.75rem; margin: 0.75rem;
font:12px Monaco,Consolas,"Andale Mono","DejaVu Sans Mono",monospace; font: 12px Monaco,Consolas,"Andale Mono","DejaVu Sans Mono",monospace;
background-color: #b58900;
color: #000; color: #000;
} }
article h2 { article h2 {
line-height: 2rem; line-height: 2rem;
} }