Skip to content

Commit

Permalink
Initial Content
Browse files Browse the repository at this point in the history
  • Loading branch information
tiliavir authored and Tiliavir committed Dec 13, 2020
0 parents commit 6f24c70
Show file tree
Hide file tree
Showing 48 changed files with 2,029 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Build on Push

on: [push]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
submodules: true
fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod
- name: Install Node.js
uses: actions/setup-node@v1
with:
node-version: 14.x
- name: npm ci
run: npm ci
- name: Setup Hugo
uses: peaceiris/actions-hugo@v2
with:
hugo-version: 'latest'
extended: true
- name: Build
run: hugo --minify
37 changes: 37 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: Publish to GH Pages on Tag

on:
create:
tags: releases/[1-9]+.[0-9]+.[0-9]+

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
submodules: true
fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod
- name: Install Node.js
uses: actions/setup-node@v1
with:
node-version: 14.x
- name: Install npm
run: npm ci
- name: Setup Hugo
uses: peaceiris/actions-hugo@v2
with:
hugo-version: 'latest'
extended: true
- name: Build
run: hugo --minify
- name: Upload
uses: actions/upload-artifact@v2
with:
name: rezepte
path: public
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: public
19 changes: 19 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@

# Created by https://www.toptal.com/developers/gitignore/api/hugo
# Edit at https://www.toptal.com/developers/gitignore?templates=hugo

### Hugo ###
# Generated files by hugo
/public/
/resources/_gen/
hugo_stats.json

# Executable may be added to repository
hugo.exe
hugo.darwin
hugo.linux

# End of https://www.toptal.com/developers/gitignore/api/hugo

.idea
node_modules
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[submodule "themes/gochowdown"]
path = themes/gochowdown
url = git@github.com:Tiliavir/gochowdown.git
24 changes: 24 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
This is free and unencumbered software released into the public domain.

Anyone is free to copy, modify, publish, use, compile, sell, or
distribute this software, either in source code form or as a compiled
binary, for any purpose, commercial or non-commercial, and by any
means.

In jurisdictions that recognize copyright laws, the author or authors
of this software dedicate any and all copyright interest in the
software to the public domain. We make this dedication for the benefit
of the public at large and to the detriment of our heirs and
successors. We intend this dedication to be an overt act of
relinquishment in perpetuity of all present and future rights to this
software under copyright law.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.

For more information, please refer to <https://unlicense.org>
15 changes: 15 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
*In contrast to my other repositories this one is in German, since the recipes are German.*

[![Build State](https://github.com/Tiliavir/rezepte/workflows/Build%20on%20Push/badge.svg)](https://github.com/Tiliavir/rezepte/actions?query=workflow%3A%22Build+on+Push%22)
&nbsp;
[![Publish State](https://github.com/Tiliavir/rezepte/workflows/Publish%20to%20GH%20Pages%20on%20Tag/badge.svg)](https://github.com/Tiliavir/rezepte/actions?query=workflow%3A%22Publish+to+GH+Pages+on+Tag%22)

# Rezepte
Sammlung an Rezepten. Das Resultat ist [auf GitHub Pages](https://tiliavir.github.io/rezepte/).

# Rezepte beisteuern
## Allgemein
Pull Requests sind immer herzlich willkommen. Im Gegensatz zu meinen anderen Repositories ist der Inhalt dieses Repositories auf deutsch. Folglich sollen auch alle Rezepte deutsch erfasst werden.
## Best Practices
### Bilder hinzufügen
- `mogrify -resize 2000x2000 **/*.jpg` um Bildgrösse zu verringern.
5 changes: 5 additions & 0 deletions archetypes/default.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
title: "{{ replace .Name "-" " " | title }}"
date: {{ .Date }}
draft: true
---
46 changes: 46 additions & 0 deletions config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
baseURL: https://tiliavir.github.io/rezepte/
languageCode: de-de
title: Die Gute-Sachen Liste
theme: gochowdown
defaultcontentlanguage: de
paginate: 20
canonifyurls: true
pygmentsstyle: monokai
pygmentscodefences: true
pygmentscodefencesguesssyntax: true
pygmentsOptions: "linenos=table"
permalinks:
posts: /posts/:year/:month/:title
params:
author: Tiliavir
description:
keywords: 'recipes'
favicon_32: /images/favicon-32x32.png
favicon_16: /images/favicon-16x16.png
footercontent:
hidecredits: false
hidecopyright: true
showNavTitle: true
custom_css:
- style.css
menu:
main:
- name: Kategorie
weight: 1
url: /category/
- name: Küche
weight: 2
url: /cuisine/
- name: Tags
weight: 3
url: /tags/
- name: Janine
weight: 4
url: /janines-liste/
- name: Markus
weight: 5
url: /markus-liste/
taxonomies:
category: category
cusine: cuisine
tag: tags
Empty file added content/_index.md
Empty file.
80 changes: 80 additions & 0 deletions content/janines-liste.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,80 @@
---
title: "Janines Liste"
date: 2020-11-08T19:45:48+01:00
---

## Kartoffeln
- Rösti
- Kartoffelquiche
- Bratkartoffeln mit Bohnen und Dip
- Rosmarinkartoffeln

## Samosa
- Süßkartoffel-Rosenkohl-Pfanne
- Ofensüßkartoffel mit Salat

## Kürbis
- Kürbisstrudel mit Feta
- Herbstflammkuchen mit Kürbis und Feigen

## Gemüse
- Knoblauch-Pilz-Pizza
- Champignons mit Knoblauchsoße
- Gefüllte Zuchini
- Herbst-Gemüse-Curry

## Asiatisch
- Miso Pfanne
- Thai Sommerrollen
- Asia-Wok
- Thai-Curry mit Reis
- Brokkolicurry

## Salat
- Salat mit Süßkartoffelfalafel
- Salatbowl
- Griechischer Salat mit Saganaki & Tzatziki
- Feldsalat mit Speck
- Gebratener Spargelsalat
- Tomaten-Mozzarella-Salat

## Suppen
- Herbsteintopf
- Kürbis-Wirsing-Eintopf
- Thai-Erdnuss-Nudelsuppe
- Tom-Kha
- Pho
- Kürbissuppe
- Champignoncremesuppe
- Tomaten-Karotten-Suppe
- Entschlackungssuppe

## Pasta
- Italienischer Pasta-Salat
- Nudel-Wirsing-Pfanne
- Walnuss-Kürbis-Pasta
- Gnocci-Gemüse-Pfanne
- Pasta mit Garnelen
- Käsespätzle
- Schupfnudeln
- Schupfnudel-Wirsing-Pfanne
- Lasagne

## Fisch
- Lachs-Brokkoli-Gratin
- Lachs mit Ofengemüse

## Fleisch
- Honig-Speck-Hackbraten
- Chili con Carne
- Wurstsalat
- Steak-Kartoffel-Pfanne
- Hähnchen-Terriyaki-Pfanne
- Crispy-Chicken- Wraps

## Sonstiges
- Feta-Hirse-Burger
- Knödel mit Rotkohl
- Fingerfood
- Kürbis-Spieße
- Blätterteigschnecken
50 changes: 50 additions & 0 deletions content/markus-liste.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
---
title: "Markus Liste"
date: 2020-11-08T19:55:05+01:00
---

## Auflauf
### Nudelauflauf
- Schinken Gratin
- Spinat
- Tomaten

### Lasagne
- Lachs Spinat
- Bolognese
- Käsespätzle
- Überbackener Chicorée

## Suppen
- Kürbissuppe (mit Zwiebelwaie)
- Tomatensuppe mit Reis
- Kartoffelsuppe

## Bratkartoffeln / Ofenkartoffeln mit ...
- Fleischkäse
- Bauernwürste
- Bohnen mit Speck und Tomaten
- Fischstäbchen
- Tzatziki

## Pasta
- Zucchini-Knoblauch Soße
- Salbei Soße
- Carbonara
- Tomatensosse
- Tomaten-Ruccula-Oliven

## Sonstiges
- Spargel mit Salzkartoffeln, Schinken und Sauce Hollandaise
- Zwiebelwaie
- Maultaschen mit Sauerkraut
- Schupfnudeln mit Sauerkraut und Speck
- Warmer Gurkensalat
- Hähnchengeschnetzeltes
- Curry
- Raclette
- Pizza
- Tomaten-Mozzarella Salat
- Chili con Carne
- Ofengemüse
- Toast Hawaii
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added content/recipes/avocado-bagel-burger/burger.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
42 changes: 42 additions & 0 deletions content/recipes/avocado-bagel-burger/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
---
layout: recipe
date: 2020-10-31T21:34:38+01:00

title: Avocado Bagel Burger
image: burger.jpg

authorName: Clarissa und Florian Sehn
sourceName: Veggie Fast Food

category: Hauptgericht
cuisine: Italienisch / Amerikanisch
tags:
- Vegetarisch
- Burger

yield: 2
prepTime: 15
cookTime: 45

ingredients:
- 2 Avocados
- 2 Bagels
- 125g eingeweichte Cashewkerne
- 150g Naturjoghurt
- 120g ungezuckerte Cornflakes
- 12 Kirschtomaten
- 1/2 Schalotte
- 1/2 Knoblauchzehe
- 1/2 Zitrone
- 1/4 Bund Schnittlauch
- halber Bund Rucola
- Salz und Pfeffer
- Chiliflocken

directions:
- Den Backofen auf 180°C (Umluft) vorheizen
- Für die Avocado-Fritten die Avocados halbieren, jede Hälfte in vier gleich große Spalten schneiden. Den Naturjoghurt in einer flachen Schüssel glatt rühren. Die Cornflakes mit den Händen grob zerdrücken und in eine zweite flache Schüssel füllen.
- Die Avocadospalten erst im Joghurt wenden, mit Salz, Pfeffer und den Chiliflocken bestreuen. Danach in den Cornflakes wenden und auf einem mit Backpapier ausgelegten Backblech verteilen. Zwanzig Minuten knusprig backen. Nach der Hälfte der Zeit die Spalten wenden.
- Schalotten und Knoblauch abziehen, etwas Zitronenschale abreiben und den Saft auspressen. Den Schnittlauch in feine Ringe schneiden. Die eingeweichten Cashewkerne mit der Einweichflüssigkeit, Schalotte, Knoblauchzehe, einer Messerspitze Zitronenschale und 1 1/2 EL Zitronensaft im Mixer pürieren, bis eine feste Masse entsteht und diese mit Salz, Pfeffer und den Schnittlauchringen abschmecken.
- Die Tomaten in Scheiben schneiden, die Bagels halbieren. Die Hälften großzügig mit der Zitronen-Cashew Mousse bestreichen, mit Tomate Rucola und Avocado-Fritten belegen und servieren.
---
31 changes: 31 additions & 0 deletions content/recipes/avocado-philadelphia-knaeckebrot/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
---
layout: recipe
date: 2020-10-31T22:13:06+01:00
title: Avocado Philadelphia Knäckebrot

category: Hauptgericht
cuisine: Italienisch
tags:
- Schnell
- Einfach
- Snack
- Gesund

yield: 2
prepTime: 15
cookTime: 0

ingredients:
- Knäckebrot
- Philadelphia
- Rucola
- Kirschtomaten
- Avocado
- Kräutersalz und Pfeffer

directions:
- Knäckebrot mit Philadelphia bestreichen
- Rucola darauf verteilen
- Avocado und halbierte Tomaten drauflegen
- Würzen
---
Loading

0 comments on commit 6f24c70

Please sign in to comment.