- Fork this repository
- Create a new directory
your-theme-name
- Create your theme and test its result.
- Submit a pull request. ( Please also attach a proper license)
- We'll review your theme and put it on Logdown theme catelogue.
- Thanks for submitting!
The theme API is available at: https://github.com/logdown/themes-guide
Please follow this convention to design your theme:
your-theme-name
├── index.liquid // The blog template
├── _sass // Will be compiled into stylesheets/
│ ├── screen.scss
│ ├── _layout.scss
│ └── _components.scss
├── stylesheets
│ ├── font-awesome.min.css
│ ├── normalize.min.css
├── font
│ ├── fontawesome-webfont.eot
│ ├── fontawesome-webfont.svg
│ ├── fontawesome-webfont.svgz
│ ├── fontawesome-webfont.ttf
│ └── fontawesome-webfont.woff
├── images
│ └── any_images.jpg
└── javascripts
├── jquery.min.js
└── blog.js
You can test how your theme will look like by apply your template to your Logdown blog via “Edit HTML”.
We have prepared a test case markdown file so you can ensure most elements that might appear on a Logdown blog will be well covered in your design. Just create an article on Logdown and paste all contents from testcase.md
to see the results.