https://github.com/sdiehl/hakyll-bootstrap
Basic Hakyll + Bootstrap site
https://github.com/sdiehl/hakyll-bootstrap
hakyll static-site-generator
Last synced: 7 months ago
JSON representation
Basic Hakyll + Bootstrap site
- Host: GitHub
- URL: https://github.com/sdiehl/hakyll-bootstrap
- Owner: sdiehl
- License: mit
- Created: 2013-11-13T16:20:12.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2017-11-23T11:53:47.000Z (almost 8 years ago)
- Last Synced: 2025-01-21T21:47:26.886Z (9 months ago)
- Topics: hakyll, static-site-generator
- Language: HTML
- Homepage:
- Size: 215 KB
- Stars: 28
- Watchers: 4
- Forks: 6
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
hakyll-bootstrap
================
![]()
A template for a small corporate Hakyll site.
**Using stack**
```bash
$ stack build
$ stack exec blog -- preview
```**Using cabal**
To get started run:
```shell
$ cabal sandbox init
$ cabal install --only-dependencies
$ cabal run preview
```The default static pages are renderd with plain HTML with mixins
from the ``/templates`` folder..```
index.htmlpages/
about.html
contact.html
privacy.html
signup.html
team.html
tos.html
```Blog posts are placed under the ``/posts`` folder and are
generated from Markdown.Inline math is enabled via setting the ``mathjax`` metadata to
``on``, by default MathJax is disabled.```text
---
title: Example Blog Post
author: Stephen Diehl
date: 2013-11-13
mathjax: on
---Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam
non est in neque luctus eleifend. Sed tincidunt vestibulum
facilisis. Aenean ut pulvinar massa.
```License
--------Released under MIT License.