https://github.com/4thel00z/blackmail.dev
Personal blog
https://github.com/4thel00z/blackmail.dev
blog blogging coding go hacking python security
Last synced: about 2 months ago
JSON representation
Personal blog
- Host: GitHub
- URL: https://github.com/4thel00z/blackmail.dev
- Owner: 4thel00z
- License: gpl-3.0
- Created: 2024-05-11T00:04:12.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2024-05-28T00:43:30.000Z (about 2 years ago)
- Last Synced: 2025-01-29T07:44:23.657Z (over 1 year ago)
- Topics: blog, blogging, coding, go, hacking, python, security
- Language: HTML
- Homepage: https://blackmail.dev/
- Size: 49.8 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: COPYING
Awesome Lists containing this project
README
# blackmail.dev
## Motivation
I want a simple blog, where I can rant about code and hacking.
## Features
### Themes via @import Directive
You can easily switch between different themes for your blog by using the `@import` directive in your `style.css`. The available themes are:
- `theme-default.css`: The default dark theme, a bit dull.
- `theme-moonlight.css`: A theme inspired by [Moonlight GitHub](https://github.com/Moonlight-theme/Github).
- `theme-tokynoight.css`: A theme inspired by [Tokyonight Vim theme](https://vimcolorschemes.com/folke/tokyonight.nvim).
- `theme-eva.css`: A theme inspired by [Eva Vim theme](https://vimcolorschemes.com/hachy/eva01.vim).
To apply a theme, simply add the `@import` statement at the top of your `style.css` file. For example, to use the default theme:
```css
@import url('theme-moonlight.css');
```
### Page size
Go to index.html and change the `pageSize` variable to the number of posts you want to display per page.
```javascript
const pageSize = 15; // Configurable page size
```
## License
This project is licensed under the GPL-3 license.