├── posts
├── kudos
│ ├── kudos.txt
│ ├── 2023-08-01-count.txt
│ └── 2023-09-01-count.txt
├── moon.jpg
├── moon_by_cc0.jpg
├── 2023-09-01.md
└── 2023-08-01.md
├── .gitignore
├── assets
├── css
│ ├── custom.css
│ ├── commento.css
│ ├── normalize.min.css
│ └── style.css
├── img
│ ├── og.png
│ ├── icon.png
│ └── author.jpg
├── tools
│ ├── feedwriter
│ │ ├── RSS2.php
│ │ ├── Item.php
│ │ └── Feed.php
│ ├── FrontMatter.php
│ ├── ParsedownExtra.php
│ └── parsedown.php
└── scripts
│ └── webmention.min.js
├── parts
├── footer.php
└── header.php
├── page.php
├── robots.txt
├── increment_likes.php
├── nav.php
├── rss.php
├── kudos.php
├── pages
└── about-me.md
├── archive.php
├── single.php
├── index.php
├── .htaccess
├── README.md
└── config.php
/posts/kudos/kudos.txt:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 |
2 | .DS_Store
3 |
--------------------------------------------------------------------------------
/posts/kudos/2023-08-01-count.txt:
--------------------------------------------------------------------------------
1 | 9
--------------------------------------------------------------------------------
/posts/kudos/2023-09-01-count.txt:
--------------------------------------------------------------------------------
1 | 21
--------------------------------------------------------------------------------
/assets/css/custom.css:
--------------------------------------------------------------------------------
1 | /* Add your custom css here! */
2 |
--------------------------------------------------------------------------------
/posts/moon.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nithou/tiny-blog-engine/HEAD/posts/moon.jpg
--------------------------------------------------------------------------------
/assets/img/og.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nithou/tiny-blog-engine/HEAD/assets/img/og.png
--------------------------------------------------------------------------------
/assets/img/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nithou/tiny-blog-engine/HEAD/assets/img/icon.png
--------------------------------------------------------------------------------
/assets/img/author.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nithou/tiny-blog-engine/HEAD/assets/img/author.jpg
--------------------------------------------------------------------------------
/posts/moon_by_cc0.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nithou/tiny-blog-engine/HEAD/posts/moon_by_cc0.jpg
--------------------------------------------------------------------------------
/parts/footer.php:
--------------------------------------------------------------------------------
1 |
2 |
3 | '.$MOREPOSTS.'';
6 | }
7 | else {
8 | echo '';
9 | };?>
10 |
11 |
14 |
15 |