Wow - I am actually paying attention to my website.

This commit is contained in:
Subnet_Masked 2024-02-11 20:07:05 -05:00
parent a6588595ff
commit fe622d59fe
Signed by: Subnet_Masked
GPG key ID: E1BB06A2490954E9
5 changed files with 86 additions and 7 deletions

Binary file not shown.

2
docs/blog/index.md Normal file
View file

@ -0,0 +1,2 @@
# Blog

View file

@ -1,3 +1,7 @@
.md-nav__item--active{ .md-nav__item--active{
padding: 0 !important; padding: 0 !important;
} }
@font-face {
font-family: 'Comic Mono';
src: url(/assets/fonts/comicmono.ttf);
}

View file

@ -1,19 +1,25 @@
site_name: Subnet's Place site_name: Subnet's Place
copyright: Copyright © 2000 - 2024 Subnet_Masked All Rights Reserved
docs_dir: docs docs_dir: docs
theme: theme:
custom_dir: overrides
logo: assets/images/profile_image.png
favicon: assets/images/profile_image.png
font:
text: Comic Mono
features: features:
- navigation.tracking - navigation.tracking
- navigation.sections
- toc.follow - toc.follow
- toc.integrate - toc.integrate
- navigation.instant - navigation.instant
- navigation.instant.progress - navigation.instant.progress
- navigation.top - navigation.top
- navigation.indexes - navigation.indexes
- content.code.copy
name: material name: material
palette: palette:
scheme: slate scheme: slate
primary: light blue primary: blue grey
accent: indigo accent: indigo
toggle: toggle:
icon: material/brightness-4 icon: material/brightness-4
@ -21,7 +27,11 @@ theme:
markdown_extensions: markdown_extensions:
- admonition - admonition
- pymdownx.details - pymdownx.details
- pymdownx.superfences - pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- attr_list - attr_list
- pymdownx.emoji: - pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji emoji_index: !!python/name:material.extensions.emoji.twemoji
@ -35,6 +45,9 @@ markdown_extensions:
- pymdownx.superfences - pymdownx.superfences
- pymdownx.tabbed: - pymdownx.tabbed:
alternate_style: true alternate_style: true
- pymdownx.tilde
- pymdownx.caret
- pymdownx.keys
extra_css: extra_css:
- stylesheets/extra.css - stylesheets/extra.css
extra: extra:
@ -50,4 +63,22 @@ nav:
- 'names_pros.md' - 'names_pros.md'
- 'contact.md' - 'contact.md'
- 'gpg.md' - 'gpg.md'
- 'projects.md' - 'projects.md'
plugins:
- glightbox:
touchNavigation: true
loop: false
effect: zoom
slide_effect: slide
width: 100%
height: auto
zoomable: true
draggable: true
auto_caption: true
caption_position: bottom
- search:
lang: en
- blog:
enabled: true
blog_dir: blog
post_dir: blog/entries

View file

@ -0,0 +1,42 @@
<!--
Copyright (c) 2016-2023 Martin Donath <martin.donath@squidfunk.com>
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to
deal in the Software without restriction, including without limitation the
rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
sell copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
IN THE SOFTWARE.
-->
<!-- Copyright and theme information -->
<div class="md-copyright">
{% if config.copyright %}
<div class="md-copyright__highlight">
{{ config.copyright }}
</div>
{% endif %}
{% if not config.extra.generator == false %}
Made with
<a
href="https://squidfunk.github.io/mkdocs-material/"
target="_blank" rel="noopener"
>
Material for MkDocs
</a>
{% endif %}
<br>
<p>Site last built {{ build_date_utc.strftime('%Y-%m-%d @ %H:%M UTC') }}</p>
<p><a href="https://dtinth.github.io/comic-mono-font/">Comic Mono</a> font copyright (c) dtinth</p>
</div>