├── .gitmodules └── README.md /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "haspot"] 2 | path = haspot 3 | url = https://github.com/MnO2/haspot.git 4 | [submodule "www.haskell.mn"] 5 | path = www.haskell.mn 6 | url = https://github.com/HaskellMN/www.haskell.mn.git 7 | [submodule "CleanMagic-hakyll"] 8 | path = CleanMagic-hakyll 9 | url = https://github.com/katychuang/CleanMagic-hakyll.git 10 | [submodule "theProfessional-hakyll"] 11 | path = theProfessional-hakyll 12 | url = https://github.com/katychuang/theProfessional-hakyll.git 13 | [submodule "wp-twentyseventeen"] 14 | path = wp-twentyseventeen 15 | url = https://github.com/katychuang/wp-twentyseventeen.git 16 | [submodule "materialize-hakyll"] 17 | path = materialize-hakyll 18 | url = https://github.com/futtetennismo/materialize-hakyll.git 19 | [submodule "BareCssHakyll"] 20 | path = BareCssHakyll 21 | url = https://github.com/adithyaov/adithyaov.github.io.git 22 | branch = develop 23 | [submodule "lanyon-hakyll"] 24 | path = lanyon-hakyll 25 | url = https://github.com/hahey/lanyon-hakyll.git 26 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Hakyll Themes 2 | 3 | Description: This collection of hakyll themes. 4 | 5 | # Contributing 6 | 7 | It's through community contributions that will continue to improve this collection. You can contribute in several ways. 8 | 9 | * **Submitting theme**: If you'd like to contribute your theme, use git submodule to add your theme. 10 | * `git submodule add https://YOURREPO.git` 11 | * `git commit -m "adding theme THEME_NAME` 12 | 13 | * **Issues**: Provide a detailed report of any bugs you encounter, and open an issue on GitHub. 14 | 15 | * **Documentation**: If you'd like to fix a typo or enhance the docs, you can fork the project, make your changes, and submit a pull request. 16 | 17 | * **Code**: Make a fix and submit it as a pull request. 18 | 19 | # Author 20 | 21 | Katherine Chuang 22 | 23 | * [http://github.com/katychuang](http://github.com/katychuang) 24 | * [http://katychuang.com](http://katychuang.com) 25 | 26 | # Thanks 27 | 28 | [Jasper Van der Jeugt](https://github.com/jaspervdj) for [Hakyll](https://jaspervdj.be/hakyll/index.html) 29 | 30 | # Copyright and license 31 | 32 | * Copyright 2015-2018 Katherine Chuang 33 | --------------------------------------------------------------------------------