Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/thunder/thunder-documentation
https://github.com/thunder/thunder-documentation
cms documentation drupal thunder
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/thunder/thunder-documentation
- Owner: thunder
- License: gpl-2.0
- Created: 2019-07-08T08:06:26.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-04-12T05:35:18.000Z (almost 2 years ago)
- Last Synced: 2024-11-10T04:38:33.495Z (3 months ago)
- Topics: cms, documentation, drupal, thunder
- Language: HTML
- Homepage: https://thunder.github.io/thunder-documentation/
- Size: 16.5 MB
- Stars: 0
- Watchers: 2
- Forks: 2
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Thunder documentation
## Contributing to the documentation
The documentation is structured, so that it automatically aggregates documentation files and builds the sidebar nav.New Pages should be placed into the root (or a new subdirectory in root).
- If it should have aggregated documentation and sidebarnav, a new file has to be created in the `_data` directory.
- For its content, please refer to the other files there.
- In your new page, add "FrontMatter"```
---
title: Documentation
slug: docs
description: "Technical documentation"
---
```- and provide following snippet
```
{% assign items=site.data[page.slug] %}
{% include page-with-sidebar.html items=items %}
```- Now every include you specified in your `_data` file (which are located in `_includes`) will be included in your new page
## Working with the Documentation locally
1. install Bundler and Jekyll with `gem install jekyll bundler`
2. Install dependencies with `bundle install`
3. Execute jekyll server with `bundle exec jekyll serve --config _config.yml,_config_dev.yml`For more information on Github-Pages, see: https://help.github.com/categories/github-pages-basics/
For more information about Jekyll, see: https://jekyllrb.com/docs/home/