miniflux-legacy/docs/themes.markdown

49 lines
1.9 KiB
Markdown
Raw Normal View History

Themes
======
How to create a theme for Miniflux?
-----------------------------------
It's very easy to write a custom theme for Miniflux.
A theme is just a CSS file, images and fonts.
A theme doesn't change the behaviour of the application but only the page layout.
The first step is to create a new directory structure for your theme:
2014-10-31 03:10:59 +01:00
```bash
mkdir -p themes/mysuperskin/{css,img,fonts}
```
The name of your theme should be only alphanumeric.
There is the following directories inside your theme:
- `css`: Your stylesheet, the file must be named `app.css` (required)
- `img`: Theme images (not required)
- `fonts`: Theme fonts (not required)
2015-01-30 03:06:54 +01:00
Miniflux use responsive design, so it's better if your theme can handle mobile devices.
List of themes
--------------
2015-01-30 03:06:54 +01:00
Since the version 1.1.7, themes are not anymore distributed in the default installation.
2015-01-30 03:06:54 +01:00
You can download them from [the official Miniflux repositories](https://github.com/miniflux):
2015-01-30 03:06:54 +01:00
- [Bootstrap Light by Silvus](https://github.com/miniflux/theme-bootstrap-light)
- [Bootswatch Cyborg by Silvus](https://github.com/miniflux/theme-bootswatch-cyborg)
- [Cards by Augustin Lacour](https://github.com/miniflux/theme-cards)
- [Copper by Nicolas Dewaele](https://github.com/miniflux/theme-copper)
- [Green by Maxime](https://github.com/miniflux/theme-green)
2015-02-07 18:09:44 +01:00
- [Hello by Mirado ZAKASOA](https://github.com/meradoou/hello)
2015-02-07 18:11:12 +01:00
- [Hello Flat by Mirado ZAKASOA](https://github.com/meradoou/hello/tree/flat)
2015-01-30 03:06:54 +01:00
- [Midnight by Luca Marra](https://github.com/miniflux/theme-midnight)
- [NoStyle by Frederic Guillot](https://github.com/miniflux/theme-nostyle)
- [Still by Franklin Delehelle](https://github.com/miniflux/theme-still)
2016-01-04 19:25:10 +01:00
- [Sun by Alexander Mangel](https://github.com/cygnusfear/miniflux-theme-sun)
2017-05-23 22:07:05 +02:00
- [EvenMoreMinimalist by Lacereation](https://github.com/lacereation/minflux-theme)
2014-09-01 18:34:28 +02:00
2014-10-31 03:10:59 +01:00
**PS: Those themes are maintained and tested by their respective authors.**