https://github.com/JmPotato/Pomash
🍠 A Lightweight Blog System
https://github.com/JmPotato/Pomash
blog-engine lightweight python
Last synced: about 1 year ago
JSON representation
🍠 A Lightweight Blog System
- Host: GitHub
- URL: https://github.com/JmPotato/Pomash
- Owner: JmPotato
- License: mit
- Archived: true
- Created: 2014-01-31T09:34:13.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2024-08-26T03:36:10.000Z (almost 2 years ago)
- Last Synced: 2024-08-26T04:51:11.119Z (almost 2 years ago)
- Topics: blog-engine, lightweight, python
- Language: Python
- Homepage:
- Size: 1.22 MB
- Stars: 67
- Watchers: 7
- Forks: 8
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Pomash
**NOTICE: This repo is no longer maintained, please use [rsomhaP](https://github.com/JmPotato/rsomhaP) which is the latest refactored version.**
Pomash is a lightweight blog system. Powered by Tornado Web Framework. In an era that static blog generators and frontend-backend separated applications dominate, embrace this classic monolithic web application to embody a unique retro style.
## Deployment
Get Pomash:
```shell
git clone https://github.com/JmPotato/Pomash.git
cd Pomash
```
After customizing `config.toml`, run `deploy.sh [PORT]` to deploy the Pomash automatically.
```shell
chmod +x deploy.sh && ./deploy.sh 5299
```
## Usage
Pomash uses Markdown to write posts and pages. LaTeX is also supported.
Note: To avoid conflict between LaTeX and Markdown, Pomash removed the emphasis syntax `*word*` and `_word_` which you should use `word` as an alternative.
# Hello World
```python
print('Hello, World!')
```
Hello, World!
Inline LaTeX: $\int_a^b f(x)\mathrm{d}x$
New line LaTeX: $$\sum_{i=0}^{n}i^2$$
This is a emphasis.
**This is a double emphasis.**
~~This is a strikethrough.~~
* Hello
* World
## Themes
Pomash's theme is called Potheme. Here is a Potheme list:
* [Potheme-Clean](https://github.com/JmPotato/Pomash/tree/master/Pomash/theme/clean)
* [Potheme-Maupassant](https://github.com/JmPotato/Potheme-Maupassant)
* [Potheme-Default](https://github.com/JmPotato/Potheme-Default)
## References
A [Chinese guide](https://ipotato.me/article/16) for setting up.(Maybe a little outdated)
## License
Please read the [MIT-LICENSE](./LICENSE)