4/14/20 update

This commit is contained in:
Sergei Akhmatdinov 2020-04-14 00:07:31 -04:00
parent 3170a0c3d2
commit 78ff2ec587
5 changed files with 60 additions and 1 deletions

22
.manifest Normal file
View File

@ -0,0 +1,22 @@
src/assets
src/assets/me.jpg
src/assets/favicon.ico
src/assets/files
src/assets/files/TP770X_IIET42WW.IMG
src/assets/files/AD800D99.key
src/assets/files/TP770X_IIET42WW.ISO
src/assets/style.css
src/assets/img
src/assets/img/swege_banner.png
src/assets/img/me.jpg
src/assets/img/tp770x.jpg
src/assets/img/favicon
src/assets/img/favicon/favicon.png
src/assets/img/favicon/favicon.ico
src/assets/favicon.png
src/software
src/software/swege.md
src/posts
src/posts/thinkpad_770x.md
src/posts/good_software.md
src/index.md

Binary file not shown.

After

Width:  |  Height:  |  Size: 87 KiB

View File

@ -20,10 +20,13 @@ My contacts:
* Wire: sakhmatd
* [Keybase](https://keybase.io/sakhmatd)
You can find some of my projects on [Github](https://github.com/sakhmatd).
You can find some of my projects on [GitHub](https://github.com/sakhmatd).
Feel free to contact me if you have any questions or feedback.
### Featured software:
* [swege](software/swege.html) - Static WEbsite GEnerator
### Notes, articles and such:
* [My Favorite Software](posts/good_software.html)

21
src/software/swege.md Normal file
View File

@ -0,0 +1,21 @@
title: swege
[![swege](/assets/img/swege_banner.png)](https://github.com/sakhmatd/swege)
swege is a Static WEbsite GEnerator written in C.
It leverages the [discount](http://www.pell.portland.or.us/~orc/Code/discount/)
library for generating a website from a set of Markdown files.
# FEATURES
* Under 400 lines of C (without counting external libraries).
* Incremental updates.
* Pretty fast!
* Almost no dependencies except for discount.
* Portable-ish, tested on GNU/Linux, FreeBSD and Mac OS X (10.13 or higher).
Should theoretically work on other *nixes and Windows through MinGW.
Check out the source code and instructions over at
[GitHub](https://github.com/sakhmatd/swege)!
[Return to the Home Page](/)

13
swege.ini Normal file
View File

@ -0,0 +1,13 @@
[swege]
# Name of your website
title = The Silver Den
# Directory with your website's source files
source = src
# Directory in which to place your rendered website
destination = site
# Locations of the header and footer templates
header = src/_header.html
footer = src/_footer.html