Wow - I am actually paying attention to my website.
This commit is contained in:
parent
a6588595ff
commit
fe622d59fe
5 changed files with 86 additions and 7 deletions
BIN
docs/assets/fonts/comicmono.ttf
Normal file
BIN
docs/assets/fonts/comicmono.ttf
Normal file
Binary file not shown.
2
docs/blog/index.md
Normal file
2
docs/blog/index.md
Normal file
|
@ -0,0 +1,2 @@
|
|||
# Blog
|
||||
|
|
@ -1,3 +1,7 @@
|
|||
.md-nav__item--active{
|
||||
padding: 0 !important;
|
||||
}
|
||||
.md-nav__item--active{
|
||||
padding: 0 !important;
|
||||
}
|
||||
@font-face {
|
||||
font-family: 'Comic Mono';
|
||||
src: url(/assets/fonts/comicmono.ttf);
|
||||
}
|
39
mkdocs.yml
39
mkdocs.yml
|
@ -1,19 +1,25 @@
|
|||
site_name: Subnet's Place
|
||||
copyright: Copyright © 2000 - 2024 Subnet_Masked All Rights Reserved
|
||||
docs_dir: docs
|
||||
theme:
|
||||
custom_dir: overrides
|
||||
logo: assets/images/profile_image.png
|
||||
favicon: assets/images/profile_image.png
|
||||
font:
|
||||
text: Comic Mono
|
||||
features:
|
||||
- navigation.tracking
|
||||
- navigation.sections
|
||||
- toc.follow
|
||||
- toc.integrate
|
||||
- navigation.instant
|
||||
- navigation.instant.progress
|
||||
- navigation.top
|
||||
- navigation.indexes
|
||||
- content.code.copy
|
||||
name: material
|
||||
palette:
|
||||
scheme: slate
|
||||
primary: light blue
|
||||
primary: blue grey
|
||||
accent: indigo
|
||||
toggle:
|
||||
icon: material/brightness-4
|
||||
|
@ -21,7 +27,11 @@ theme:
|
|||
markdown_extensions:
|
||||
- admonition
|
||||
- pymdownx.details
|
||||
- pymdownx.superfences
|
||||
- pymdownx.superfences:
|
||||
custom_fences:
|
||||
- name: mermaid
|
||||
class: mermaid
|
||||
format: !!python/name:pymdownx.superfences.fence_code_format
|
||||
- attr_list
|
||||
- pymdownx.emoji:
|
||||
emoji_index: !!python/name:material.extensions.emoji.twemoji
|
||||
|
@ -35,6 +45,9 @@ markdown_extensions:
|
|||
- pymdownx.superfences
|
||||
- pymdownx.tabbed:
|
||||
alternate_style: true
|
||||
- pymdownx.tilde
|
||||
- pymdownx.caret
|
||||
- pymdownx.keys
|
||||
extra_css:
|
||||
- stylesheets/extra.css
|
||||
extra:
|
||||
|
@ -50,4 +63,22 @@ nav:
|
|||
- 'names_pros.md'
|
||||
- 'contact.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
|
42
overrides/partials/copyright.html
Normal file
42
overrides/partials/copyright.html
Normal 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>
|
Loading…
Reference in a new issue