Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/beschlagnahmt-org/beschlagnahmt
Quelltext der Webseite beschlagnahmt.org
https://github.com/beschlagnahmt-org/beschlagnahmt
jekyll
Last synced: 5 days 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 (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-08-06T07:26:48.000Z (3 months ago)
- Last Synced: 2024-08-06T09:23:02.008Z (3 months ago)
- Topics: jekyll
- Language: SCSS
- Homepage:
- Size: 22.5 MB
- Stars: 10
- Watchers: 3
- Forks: 5
- Open Issues: 7
-
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)
![Jekyll site CI](https://github.com/beschlagnahmt-org/website/workflows/Jekyll%20site%20CI/badge.svg) ![Generate PDF](https://github.com/beschlagnahmt-org/beschlagnahmt/workflows/Generate%20PDF/badge.svg) [![Broken Link Check](https://github.com/beschlagnahmt-org/beschlagnahmt/actions/workflows/broken-link-check.yml/badge.svg)](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
```