https://github.com/beschlagnahmt-org/beschlagnahmt
Quelltext der Webseite beschlagnahmt.org
https://github.com/beschlagnahmt-org/beschlagnahmt
jekyll
Last synced: about 1 month ago
JSON representation
Quelltext der Webseite beschlagnahmt.org
- Host: GitHub
- URL: https://github.com/beschlagnahmt-org/beschlagnahmt
- Owner: beschlagnahmt-org
- License: wtfpl
- Created: 2020-06-25T08:15:19.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2024-12-27T20:01:49.000Z (4 months ago)
- Last Synced: 2024-12-27T20:28:31.755Z (4 months ago)
- Topics: jekyll
- Language: SCSS
- Homepage:
- Size: 22.5 MB
- Stars: 10
- Watchers: 3
- Forks: 5
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
- awesome-starred - beschlagnahmt-org/beschlagnahmt - Quelltext der Webseite beschlagnahmt.org (jekyll)
README
# [beschlagnahmt.org](https://beschlagnahmt.org)
  [](https://github.com/beschlagnahmt-org/beschlagnahmt/actions/workflows/broken-link-check.yml)
## Inhalte
Die Webseite wird mittels [Jekyll](https://jekyllrb.com/) generiert.
- `_posts` enthält die einzelnen Themen
- `_pages` enthält die Seiten des Menüs## Lokale Entwicklung
```bash
# Abhängigkeiten installieren$ > bundle install
# Lokalen Webserver starten
$ > bundle exec jekyll serve
```## PDF Export
mittels Pandoc 1.6### Automatischer Export und Upload
Mittels [Github Action](https://github.com/beschlagnahmt-org/beschlagnahmt/actions?query=workflow%3A%22Generate+PDF%22) wird nach jeder Änderung ein neues PDF generiert und dem Repo hinzugefügt.
### Manueller Export
```bash
$ > pandoc -s -f markdown _pages/about.md _posts/* \
-o acab.pdf \
--resource-path=assets \
--pdf-engine=xelatex \
--template=.pandoc/template.latex \
--lua-filter=.pandoc/remove-toc.lua \
-V documentclass=report
```