This commit is contained in:
Andi Hechtbauer 2017-12-11 15:07:12 +01:00
parent 9b909a8e35
commit 789a2690c6
26 changed files with 368 additions and 293 deletions

View File

@ -1,33 +1,43 @@
---
title: Binary Kitchen
date: 2017-03-23
publishdate: 2017-03-24
description: "Hack Space Regensburg"
---
# Open Monday
Jeden Montag Abend treffen wir uns in der Binary Kitchen.
Montags wird sowohl an Projekten gearbeitet als auch in lockerer
Atmosphäre diskutiert. Alle Interessierten sind herzlich eingeladen!
Ab 19 Uhr sind Mitglieder anzutreffen, die gerne eine Führung
anbieten.
Walderdorffstr. 13b, 93053 Regensburg | Bus: 2A Safferlingstrasse
<iframe id="tooltip" width="425" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://www.openstreetmap.org/export/embed.html?bbox=12.117855548858644%2C49.00914581514452%2C12.119462192058563%2C49.01055152737082&amp;layer=mapnik" style="border: 1px solid black"></iframe><br/><a href="http://www.openstreetmap.org/#map=19/49.00985/12.11866">Karte vergrößern</a>
## Binary Kitchen
<section class="w-100 f7 tc-l">
de: binäre Küche · ja: バイナリーキッチン · fr: Cuisine binaire · cn: 二进制厨房 · ru: Двоичная кухня · he:מטבח בינארי · ml: ബൈനറി പാചകം · pa: ਬਾਈਨਰੀ ਖਾਣਾ ਪਕਾਉਣ · ko: 이진 요리 · hy: Երկուական խոհարարություն · gu: Երկուական խոհարարություն · ar: الطبخ ثنائي · km: ចម្អិនអាហារគោលពីរ · ne: बाइनरी खाना पकाउने · el: Δυαδική μαγειρική · bar: zwidoppelte Kuchl
</section>
<p>
Rund um die Kitchen
</p>
Amtliches und Bürokratie (Dokumente, Formulare)
<section class="cf w-100 pv3 f6 ph3 ph4-ns bg-silver">
Lebercast
<div class="fl-l w-100 w-50-l pr4-ns center">
<article class="center mw5 mw6-ns hidden ba bg-white-60">
<h1 class="f4 bg-near-black white mv0 pv2 ph3">Open Monday</h1>
<div class="pa3 bt">
<p class="f6 f5-ns lh-copy measure mv0">
Jeden Montag Abend treffen wir uns in der Binary Kitchen.
Montags wird sowohl an Projekten gearbeitet als auch in lockerer
Atmosphäre diskutiert. Alle Interessierten sind herzlich eingeladen!
Ab 19 Uhr sind Mitglieder anzutreffen, die gerne eine Führung
anbieten.
</p>
<p>
Walderdorffstr. 13b, 93053 Regensburg<br>
Bus: 2A Safferlingstrasse
</p>
</div>
</article>
</div>
Members
<div class="fl-l w-100 w-50-l pr4-ns center">
<iframe id="tooltip" width="425" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://www.openstreetmap.org/export/embed.html?bbox=12.117855548858644%2C49.00914581514452%2C12.119462192058563%2C49.01055152737082&amp;layer=mapnik" style="border: 1px solid black"></iframe><br/><a href="http://www.openstreetmap.org/#map=19/49.00985/12.11866">Karte vergrößern</a>
</div>
<hr>
[Twitter](https://twitter.com/binary_kitchen) | [Mailingliste](http://lists.binary-kitchen.de/listinfo/allgemein|Mailingliste) | [IRC channel](https://webirc.hackint.org/#irc://irc.hackint.org/#binary-kitchen) | [0941 378 01 74 00](tel:0941378017400)
</section>
<hr>
[Twitter](https://twitter.com/binary_kitchen) | [Mailingliste](http://lists.binary-kitchen.de/listinfo/allgemein|Mailingliste) | [IRC channel](https://webirc.hackint.org/#irc://irc.hackint.org/#binary-kitchen) | [0941 378 01 74 00](tel:0941378017400) | Dokumente, Formulare | Lebercast | Members

55
layouts/index.html Executable file
View File

@ -0,0 +1,55 @@
{{ define "main" }}
<article class="w-100 cf ph3 ph5-l pv3 pv4-l f4 center lh-copy mid-gray">
{{ .Content }}
</article>
{{/* Define a section to pull recent posts from. For Hugo 0.20 this will default to the section with the most number of pages. */}}
{{ $mainSections := .Site.Params.mainSections | default (slice "post") }}
{{/* Create a variable with that section to use in multiple places. */}}
{{ $section := where .Site.RegularPages "Section" "in" $mainSections }}
{{/* Check to see if the section is defined for ranging through it */}}
{{ $section_count := len $section }}
{{ if ge $section_count 1 }}
{{/* Derive the section name */}}
{{ $section_name := index (.Site.Params.mainSections) 0 }}
<div class="pa3 pa4-ns w-100 w-70-ns center">
{{/* Use $section_name to get the section title. Use "with" to only show it if it exists */}}
{{ with .Site.GetPage "section" $section_name }}
<h1 class="flex-none">
Recent {{ .Title }}
</h1>
{{ end }}
{{ $n_posts := $.Param "recent_posts_number" | default 3 }}
<section class="w-100 mw8">
{{/* Range through the first $n_posts items of the section */}}
{{ range (first $n_posts $section) }}
<div class="relative w-100 mb4">
{{ partial "summary-with-image.html" . }}
</div>
{{ end }}
</section>
{{ if ge $section_count (add $n_posts 1) }}
<section class="w-100">
<h1 class="f3">More</h1>
{{/* Now, range through the next four after the initial $n_posts items. Nest the requirements, "after" then "first" on the outside */}}
{{ range (first 4 (after $n_posts $section)) }}
<h2 class="f5 fw4 mb4 dib mr3">
<a href="{{ .URL }}" class="link black dim">
{{ .Title }}
</a>
</h2>
{{ end }}
{{/* As above, Use $section_name to get the section title, and URL. Use "with" to only show it if it exists */}}
{{ with .Site.GetPage "section" $section_name }}
<a href="{{ .URL }}" class="link db f6 pa2 br3 bg-mid-gray white dim w4 tc">All {{.Title }}</a>
{{ end }}
</section>
{{ end }}
</div>
{{ end }}
{{ end }}

View File

@ -15,14 +15,14 @@
<META NAME="ROBOTS" CONTENT="NOINDEX, NOFOLLOW">
<link href='http://binary.kitchen/dist/main.css' rel='stylesheet' type="text/css" />
<link href='http://kitchenusqlz6f7f.onion/dist/main.css' rel='stylesheet' type="text/css" />
<link href="http://binary.kitchen/index.xml" rel="alternate" type="application/rss+xml" title="binary.kitchen" />
<link href="http://binary.kitchen/index.xml" rel="feed" type="application/rss+xml" title="binary.kitchen" />
<link href="http://kitchenusqlz6f7f.onion/index.xml" rel="alternate" type="application/rss+xml" title="binary.kitchen" />
<link href="http://kitchenusqlz6f7f.onion/index.xml" rel="feed" type="application/rss+xml" title="binary.kitchen" />
<meta property="og:title" content="404 Page not found" />
@ -59,33 +59,33 @@
<div class="bg-black">
<nav class="pv3 ph3 ph4-ns" role="navigation">
<div class="flex-l justify-between items-center center">
<a href="http://binary.kitchen/" class="f3 fw2 hover-white no-underline white-90 dib">
<img src="/logo.png">
<a href="http://kitchenusqlz6f7f.onion/" class="f3 fw2 hover-white no-underline white-90 dib">
<img src="./logo.png">
</a>
<div class="flex-l items-center">
<ul class="pl0 mr3">
<li class="list f5 f4-ns fw4 dib pr3">
<a class="hover-white no-underline white-90" href="/kitchenlog/" title="Kitchenlog page">
<a class="hover-white no-underline white-90" href="./kitchenlog/" title="Kitchenlog page">
Kitchenlog
</a>
</li>
<li class="list f5 f4-ns fw4 dib pr3">
<a class="hover-white no-underline white-90" href="/projekte/" title="Projekte page">
<a class="hover-white no-underline white-90" href="./projekte/" title="Projekte page">
Projekte
</a>
</li>
<li class="list f5 f4-ns fw4 dib pr3">
<a class="hover-white no-underline white-90" href="/about/" title="Über die Kitchen page">
<a class="hover-white no-underline white-90" href="./about/" title="Über die Kitchen page">
Über die Kitchen
</a>
</li>
<li class="list f5 f4-ns fw4 dib pr3">
<a class="hover-white no-underline white-90" href="https://wiki.binary-kitchen.de/">
<a class="hover-white no-underline white-90" href="https://www.binary-kitchen.de/wiki">
Wiki
</a>
</li>
@ -136,7 +136,7 @@
</main>
<footer class="bg-near-black bottom-0 w-100 pa3" role="contentinfo">
<div class="flex justify-between">
<a class="f4 fw4 hover-white no-underline white-70 dn dib-ns pv2 ph3" href="http://binary.kitchen/" >
<a class="f4 fw4 hover-white no-underline white-70 dn dib-ns pv2 ph3" href="http://kitchenusqlz6f7f.onion/" >
♥ 2017 binary.kitchen
</a>
<div class="flex-l items-center">
@ -144,7 +144,7 @@
<ul class="pl0 mr3">
<li class="list f5 f4-ns fw4 dib pr3">
<a class="hover-white no-underline white-90" href="/contact/" title="Kontakt page">
<a class="hover-white no-underline white-90" href="./contact/" title="Kontakt page">
Kontakt
</a>
</li>
@ -182,7 +182,7 @@
</footer>
<script src="http://binary.kitchen/dist/app.bundle.js" async></script>
<script src="http://kitchenusqlz6f7f.onion/dist/app.bundle.js" async></script>
</body>
</html>

View File

@ -15,20 +15,20 @@
<META NAME="ROBOTS" CONTENT="NOINDEX, NOFOLLOW">
<link href='http://binary.kitchen/dist/main.css' rel='stylesheet' type="text/css" />
<link href='http://kitchenusqlz6f7f.onion/dist/main.css' rel='stylesheet' type="text/css" />
<link href="http://binary.kitchen/about/index.xml" rel="alternate" type="application/rss+xml" title="binary.kitchen" />
<link href="http://binary.kitchen/about/index.xml" rel="feed" type="application/rss+xml" title="binary.kitchen" />
<link href="http://kitchenusqlz6f7f.onion/about/index.xml" rel="alternate" type="application/rss+xml" title="binary.kitchen" />
<link href="http://kitchenusqlz6f7f.onion/about/index.xml" rel="feed" type="application/rss+xml" title="binary.kitchen" />
<meta property="og:title" content="Über die Kitchen" />
<meta property="og:description" content="The last theme you&#39;ll ever need. Maybe." />
<meta property="og:type" content="website" />
<meta property="og:url" content="http://binary.kitchen/about/" />
<meta property="og:url" content="http://kitchenusqlz6f7f.onion/about/" />
@ -57,37 +57,37 @@
<header class="cover bg-top" style="background-image: url('http://binary.kitchen/kitchendoor.jpeg');">
<header class="cover bg-top" style="background-image: url('http://kitchenusqlz6f7f.onion/kitchendoor.jpeg');">
<div class="bg-black-60">
<nav class="pv3 ph3 ph4-ns" role="navigation">
<div class="flex-l justify-between items-center center">
<a href="http://binary.kitchen/" class="f3 fw2 hover-white no-underline white-90 dib">
<img src="/logo.png">
<a href="http://kitchenusqlz6f7f.onion/" class="f3 fw2 hover-white no-underline white-90 dib">
<img src="../logo.png">
</a>
<div class="flex-l items-center">
<ul class="pl0 mr3">
<li class="list f5 f4-ns fw4 dib pr3">
<a class="hover-white no-underline white-90" href="/kitchenlog/" title="Kitchenlog page">
<a class="hover-white no-underline white-90" href="../kitchenlog/" title="Kitchenlog page">
Kitchenlog
</a>
</li>
<li class="list f5 f4-ns fw4 dib pr3">
<a class="hover-white no-underline white-90" href="/projekte/" title="Projekte page">
<a class="hover-white no-underline white-90" href="../projekte/" title="Projekte page">
Projekte
</a>
</li>
<li class="list f5 f4-ns fw4 dib pr3">
<a class="hover-white no-underline white-90" href="/about/" title="Über die Kitchen page">
<a class="hover-white no-underline white-90" href="../about/" title="Über die Kitchen page">
Über die Kitchen
</a>
</li>
<li class="list f5 f4-ns fw4 dib pr3">
<a class="hover-white no-underline white-90" href="https://wiki.binary-kitchen.de/">
<a class="hover-white no-underline white-90" href="https://www.binary-kitchen.de/wiki">
Wiki
</a>
</li>
@ -171,7 +171,7 @@
<div class="bg-white mb3 pa4 gray overflow-hidden">
<span class="f6 db">About</span>
<h1 class="f3 near-black">
<a href="/about/members/anti/" class="link black dim">
<a href="../about/members/anti/" class="link black dim">
</a>
</h1>
@ -189,7 +189,7 @@ Short description
<div class="bg-white mb3 pa4 gray overflow-hidden">
<span class="f6 db">About</span>
<h1 class="f3 near-black">
<a href="/about/members/heal/" class="link black dim">
<a href="../about/members/heal/" class="link black dim">
</a>
</h1>
@ -210,7 +210,7 @@ Short description
</main>
<footer class="bg-near-black bottom-0 w-100 pa3" role="contentinfo">
<div class="flex justify-between">
<a class="f4 fw4 hover-white no-underline white-70 dn dib-ns pv2 ph3" href="http://binary.kitchen/" >
<a class="f4 fw4 hover-white no-underline white-70 dn dib-ns pv2 ph3" href="http://kitchenusqlz6f7f.onion/" >
♥ 2017 binary.kitchen
</a>
<div class="flex-l items-center">
@ -218,7 +218,7 @@ Short description
<ul class="pl0 mr3">
<li class="list f5 f4-ns fw4 dib pr3">
<a class="hover-white no-underline white-90" href="/contact/" title="Kontakt page">
<a class="hover-white no-underline white-90" href="../contact/" title="Kontakt page">
Kontakt
</a>
</li>
@ -256,7 +256,7 @@ Short description
</footer>
<script src="http://binary.kitchen/dist/app.bundle.js" async></script>
<script src="http://kitchenusqlz6f7f.onion/dist/app.bundle.js" async></script>
</body>
</html>

View File

@ -2,31 +2,31 @@
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>Über die Kitchen on binary.kitchen</title>
<link>http://binary.kitchen/about/</link>
<link>http://kitchenusqlz6f7f.onion/about/</link>
<description>Recent content in Über die Kitchen on binary.kitchen</description>
<generator>Hugo -- gohugo.io</generator>
<language>de-de</language>
<lastBuildDate>Thu, 23 Mar 2017 00:00:00 +0000</lastBuildDate>
<atom:link href="http://binary.kitchen/about/index.xml" rel="self" type="application/rss+xml" />
<atom:link href="http://kitchenusqlz6f7f.onion/about/index.xml" rel="self" type="application/rss+xml" />
<item>
<title></title>
<link>http://binary.kitchen/about/members/anti/</link>
<link>http://kitchenusqlz6f7f.onion/about/members/anti/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>http://binary.kitchen/about/members/anti/</guid>
<guid>http://kitchenusqlz6f7f.onion/about/members/anti/</guid>
<description>anti Twitter @antihec
Short description</description>
</item>
<item>
<title></title>
<link>http://binary.kitchen/about/members/heal/</link>
<link>http://kitchenusqlz6f7f.onion/about/members/heal/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>http://binary.kitchen/about/members/heal/</guid>
<guid>http://kitchenusqlz6f7f.onion/about/members/heal/</guid>
<description>hael Twitter @OOOOOO1O1O1O
Short description</description>
</item>

View File

@ -15,7 +15,7 @@
<META NAME="ROBOTS" CONTENT="NOINDEX, NOFOLLOW">
<link href='http://binary.kitchen/dist/main.css' rel='stylesheet' type="text/css" />
<link href='http://kitchenusqlz6f7f.onion/dist/main.css' rel='stylesheet' type="text/css" />
@ -26,12 +26,12 @@
<meta property="og:description" content="anti Twitter @antihec
Short description" />
<meta property="og:type" content="article" />
<meta property="og:url" content="http://binary.kitchen/about/members/anti/" />
<meta property="og:url" content="http://kitchenusqlz6f7f.onion/about/members/anti/" />
<meta property="article:modified_time" content="2017-11-28T16:47:38&#43;01:00"/>
@ -68,33 +68,33 @@ Short description"/>
<div class="bg-black">
<nav class="pv3 ph3 ph4-ns" role="navigation">
<div class="flex-l justify-between items-center center">
<a href="http://binary.kitchen/" class="f3 fw2 hover-white no-underline white-90 dib">
<img src="/logo.png">
<a href="http://kitchenusqlz6f7f.onion/" class="f3 fw2 hover-white no-underline white-90 dib">
<img src="../../../logo.png">
</a>
<div class="flex-l items-center">
<ul class="pl0 mr3">
<li class="list f5 f4-ns fw4 dib pr3">
<a class="hover-white no-underline white-90" href="/kitchenlog/" title="Kitchenlog page">
<a class="hover-white no-underline white-90" href="../../../kitchenlog/" title="Kitchenlog page">
Kitchenlog
</a>
</li>
<li class="list f5 f4-ns fw4 dib pr3">
<a class="hover-white no-underline white-90" href="/projekte/" title="Projekte page">
<a class="hover-white no-underline white-90" href="../../../projekte/" title="Projekte page">
Projekte
</a>
</li>
<li class="list f5 f4-ns fw4 dib pr3">
<a class="hover-white no-underline white-90" href="/about/" title="Über die Kitchen page">
<a class="hover-white no-underline white-90" href="../../../about/" title="Über die Kitchen page">
Über die Kitchen
</a>
</li>
<li class="list f5 f4-ns fw4 dib pr3">
<a class="hover-white no-underline white-90" href="https://wiki.binary-kitchen.de/">
<a class="hover-white no-underline white-90" href="https://www.binary-kitchen.de/wiki">
Wiki
</a>
</li>
@ -172,14 +172,14 @@ Short description"/>
<li class="list f5 w-100 hover-bg-white nl1">
<a href="/about/members/anti/" class="link ph2 pv2 db black o-50">
<a href="../../../about/members/anti/" class="link ph2 pv2 db black o-50">
</a>
</li>
<li class="list f5 w-100 hover-bg-white nl1">
<a href="/about/members/heal/" class="link ph2 pv2 db black">
<a href="../../../about/members/heal/" class="link ph2 pv2 db black">
</a>
</li>
@ -194,7 +194,7 @@ Short description"/>
</main>
<footer class="bg-near-black bottom-0 w-100 pa3" role="contentinfo">
<div class="flex justify-between">
<a class="f4 fw4 hover-white no-underline white-70 dn dib-ns pv2 ph3" href="http://binary.kitchen/" >
<a class="f4 fw4 hover-white no-underline white-70 dn dib-ns pv2 ph3" href="http://kitchenusqlz6f7f.onion/" >
♥ 2017 binary.kitchen
</a>
<div class="flex-l items-center">
@ -202,7 +202,7 @@ Short description"/>
<ul class="pl0 mr3">
<li class="list f5 f4-ns fw4 dib pr3">
<a class="hover-white no-underline white-90" href="/contact/" title="Kontakt page">
<a class="hover-white no-underline white-90" href="../../../contact/" title="Kontakt page">
Kontakt
</a>
</li>
@ -240,7 +240,7 @@ Short description"/>
</footer>
<script src="http://binary.kitchen/dist/app.bundle.js" async></script>
<script src="http://kitchenusqlz6f7f.onion/dist/app.bundle.js" async></script>
</body>
</html>

View File

@ -15,7 +15,7 @@
<META NAME="ROBOTS" CONTENT="NOINDEX, NOFOLLOW">
<link href='http://binary.kitchen/dist/main.css' rel='stylesheet' type="text/css" />
<link href='http://kitchenusqlz6f7f.onion/dist/main.css' rel='stylesheet' type="text/css" />
@ -26,12 +26,12 @@
<meta property="og:description" content="hael Twitter @OOOOOO1O1O1O
Short description" />
<meta property="og:type" content="article" />
<meta property="og:url" content="http://binary.kitchen/about/members/heal/" />
<meta property="og:url" content="http://kitchenusqlz6f7f.onion/about/members/heal/" />
<meta property="article:modified_time" content="2017-11-30T13:51:34&#43;01:00"/>
@ -68,33 +68,33 @@ Short description"/>
<div class="bg-black">
<nav class="pv3 ph3 ph4-ns" role="navigation">
<div class="flex-l justify-between items-center center">
<a href="http://binary.kitchen/" class="f3 fw2 hover-white no-underline white-90 dib">
<img src="/logo.png">
<a href="http://kitchenusqlz6f7f.onion/" class="f3 fw2 hover-white no-underline white-90 dib">
<img src="../../../logo.png">
</a>
<div class="flex-l items-center">
<ul class="pl0 mr3">
<li class="list f5 f4-ns fw4 dib pr3">
<a class="hover-white no-underline white-90" href="/kitchenlog/" title="Kitchenlog page">
<a class="hover-white no-underline white-90" href="../../../kitchenlog/" title="Kitchenlog page">
Kitchenlog
</a>
</li>
<li class="list f5 f4-ns fw4 dib pr3">
<a class="hover-white no-underline white-90" href="/projekte/" title="Projekte page">
<a class="hover-white no-underline white-90" href="../../../projekte/" title="Projekte page">
Projekte
</a>
</li>
<li class="list f5 f4-ns fw4 dib pr3">
<a class="hover-white no-underline white-90" href="/about/" title="Über die Kitchen page">
<a class="hover-white no-underline white-90" href="../../../about/" title="Über die Kitchen page">
Über die Kitchen
</a>
</li>
<li class="list f5 f4-ns fw4 dib pr3">
<a class="hover-white no-underline white-90" href="https://wiki.binary-kitchen.de/">
<a class="hover-white no-underline white-90" href="https://www.binary-kitchen.de/wiki">
Wiki
</a>
</li>
@ -172,14 +172,14 @@ Short description"/>
<li class="list f5 w-100 hover-bg-white nl1">
<a href="/about/members/anti/" class="link ph2 pv2 db black">
<a href="../../../about/members/anti/" class="link ph2 pv2 db black">
</a>
</li>
<li class="list f5 w-100 hover-bg-white nl1">
<a href="/about/members/heal/" class="link ph2 pv2 db black o-50">
<a href="../../../about/members/heal/" class="link ph2 pv2 db black o-50">
</a>
</li>
@ -194,7 +194,7 @@ Short description"/>
</main>
<footer class="bg-near-black bottom-0 w-100 pa3" role="contentinfo">
<div class="flex justify-between">
<a class="f4 fw4 hover-white no-underline white-70 dn dib-ns pv2 ph3" href="http://binary.kitchen/" >
<a class="f4 fw4 hover-white no-underline white-70 dn dib-ns pv2 ph3" href="http://kitchenusqlz6f7f.onion/" >
♥ 2017 binary.kitchen
</a>
<div class="flex-l items-center">
@ -202,7 +202,7 @@ Short description"/>
<ul class="pl0 mr3">
<li class="list f5 f4-ns fw4 dib pr3">
<a class="hover-white no-underline white-90" href="/contact/" title="Kontakt page">
<a class="hover-white no-underline white-90" href="../../../contact/" title="Kontakt page">
Kontakt
</a>
</li>
@ -240,7 +240,7 @@ Short description"/>
</footer>
<script src="http://binary.kitchen/dist/app.bundle.js" async></script>
<script src="http://kitchenusqlz6f7f.onion/dist/app.bundle.js" async></script>
</body>
</html>

View File

@ -1 +1 @@
<!DOCTYPE html><html><head><title>http://binary.kitchen/about/</title><link rel="canonical" href="http://binary.kitchen/about/"/><meta name="robots" content="noindex"><meta http-equiv="content-type" content="text/html; charset=utf-8" /><meta http-equiv="refresh" content="0; url=http://binary.kitchen/about/" /></head></html>
<!DOCTYPE html><html><head><title>http://kitchenusqlz6f7f.onion/about/</title><link rel="canonical" href="http://kitchenusqlz6f7f.onion/about/"/><meta name="robots" content="noindex"><meta http-equiv="content-type" content="text/html; charset=utf-8" /><meta http-equiv="refresh" content="0; url=http://kitchenusqlz6f7f.onion/about/" /></head></html>

View File

@ -15,20 +15,20 @@
<META NAME="ROBOTS" CONTENT="NOINDEX, NOFOLLOW">
<link href='http://binary.kitchen/dist/main.css' rel='stylesheet' type="text/css" />
<link href='http://kitchenusqlz6f7f.onion/dist/main.css' rel='stylesheet' type="text/css" />
<link href="http://binary.kitchen/categories/index.xml" rel="alternate" type="application/rss+xml" title="binary.kitchen" />
<link href="http://binary.kitchen/categories/index.xml" rel="feed" type="application/rss+xml" title="binary.kitchen" />
<link href="http://kitchenusqlz6f7f.onion/categories/index.xml" rel="alternate" type="application/rss+xml" title="binary.kitchen" />
<link href="http://kitchenusqlz6f7f.onion/categories/index.xml" rel="feed" type="application/rss+xml" title="binary.kitchen" />
<meta property="og:title" content="Categories" />
<meta property="og:description" content="The last theme you&#39;ll ever need. Maybe." />
<meta property="og:type" content="website" />
<meta property="og:url" content="http://binary.kitchen/categories/" />
<meta property="og:url" content="http://kitchenusqlz6f7f.onion/categories/" />
@ -57,37 +57,37 @@
<header class="cover bg-top" style="background-image: url('http://binary.kitchen/kitchendoor.jpeg');">
<header class="cover bg-top" style="background-image: url('http://kitchenusqlz6f7f.onion/kitchendoor.jpeg');">
<div class="bg-black-60">
<nav class="pv3 ph3 ph4-ns" role="navigation">
<div class="flex-l justify-between items-center center">
<a href="http://binary.kitchen/" class="f3 fw2 hover-white no-underline white-90 dib">
<img src="/logo.png">
<a href="http://kitchenusqlz6f7f.onion/" class="f3 fw2 hover-white no-underline white-90 dib">
<img src="../logo.png">
</a>
<div class="flex-l items-center">
<ul class="pl0 mr3">
<li class="list f5 f4-ns fw4 dib pr3">
<a class="hover-white no-underline white-90" href="/kitchenlog/" title="Kitchenlog page">
<a class="hover-white no-underline white-90" href="../kitchenlog/" title="Kitchenlog page">
Kitchenlog
</a>
</li>
<li class="list f5 f4-ns fw4 dib pr3">
<a class="hover-white no-underline white-90" href="/projekte/" title="Projekte page">
<a class="hover-white no-underline white-90" href="../projekte/" title="Projekte page">
Projekte
</a>
</li>
<li class="list f5 f4-ns fw4 dib pr3">
<a class="hover-white no-underline white-90" href="/about/" title="Über die Kitchen page">
<a class="hover-white no-underline white-90" href="../about/" title="Über die Kitchen page">
Über die Kitchen
</a>
</li>
<li class="list f5 f4-ns fw4 dib pr3">
<a class="hover-white no-underline white-90" href="https://wiki.binary-kitchen.de/">
<a class="hover-white no-underline white-90" href="https://www.binary-kitchen.de/wiki">
Wiki
</a>
</li>
@ -150,7 +150,7 @@
</main>
<footer class="bg-near-black bottom-0 w-100 pa3" role="contentinfo">
<div class="flex justify-between">
<a class="f4 fw4 hover-white no-underline white-70 dn dib-ns pv2 ph3" href="http://binary.kitchen/" >
<a class="f4 fw4 hover-white no-underline white-70 dn dib-ns pv2 ph3" href="http://kitchenusqlz6f7f.onion/" >
♥ 2017 binary.kitchen
</a>
<div class="flex-l items-center">
@ -158,7 +158,7 @@
<ul class="pl0 mr3">
<li class="list f5 f4-ns fw4 dib pr3">
<a class="hover-white no-underline white-90" href="/contact/" title="Kontakt page">
<a class="hover-white no-underline white-90" href="../contact/" title="Kontakt page">
Kontakt
</a>
</li>
@ -196,7 +196,7 @@
</footer>
<script src="http://binary.kitchen/dist/app.bundle.js" async></script>
<script src="http://kitchenusqlz6f7f.onion/dist/app.bundle.js" async></script>
</body>
</html>

View File

@ -2,12 +2,12 @@
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>Categories on binary.kitchen</title>
<link>http://binary.kitchen/categories/</link>
<link>http://kitchenusqlz6f7f.onion/categories/</link>
<description>Recent content in Categories on binary.kitchen</description>
<generator>Hugo -- gohugo.io</generator>
<language>de-de</language>
<atom:link href="http://binary.kitchen/categories/index.xml" rel="self" type="application/rss+xml" />
<atom:link href="http://kitchenusqlz6f7f.onion/categories/index.xml" rel="self" type="application/rss+xml" />
</channel>

View File

@ -15,7 +15,7 @@
<META NAME="ROBOTS" CONTENT="NOINDEX, NOFOLLOW">
<link href='http://binary.kitchen/dist/main.css' rel='stylesheet' type="text/css" />
<link href='http://kitchenusqlz6f7f.onion/dist/main.css' rel='stylesheet' type="text/css" />
@ -25,12 +25,12 @@
<meta property="og:title" content="Kontakt" />
<meta property="og:description" content="We&#39;d love to hear from you" />
<meta property="og:type" content="article" />
<meta property="og:url" content="http://binary.kitchen/contact/" />
<meta property="og:url" content="http://kitchenusqlz6f7f.onion/contact/" />
<meta property="article:modified_time" content="2017-11-30T13:51:34&#43;01:00"/>
@ -65,33 +65,33 @@
<div class="bg-black">
<nav class="pv3 ph3 ph4-ns" role="navigation">
<div class="flex-l justify-between items-center center">
<a href="http://binary.kitchen/" class="f3 fw2 hover-white no-underline white-90 dib">
<img src="/logo.png">
<a href="http://kitchenusqlz6f7f.onion/" class="f3 fw2 hover-white no-underline white-90 dib">
<img src="../logo.png">
</a>
<div class="flex-l items-center">
<ul class="pl0 mr3">
<li class="list f5 f4-ns fw4 dib pr3">
<a class="hover-white no-underline white-90" href="/kitchenlog/" title="Kitchenlog page">
<a class="hover-white no-underline white-90" href="../kitchenlog/" title="Kitchenlog page">
Kitchenlog
</a>
</li>
<li class="list f5 f4-ns fw4 dib pr3">
<a class="hover-white no-underline white-90" href="/projekte/" title="Projekte page">
<a class="hover-white no-underline white-90" href="../projekte/" title="Projekte page">
Projekte
</a>
</li>
<li class="list f5 f4-ns fw4 dib pr3">
<a class="hover-white no-underline white-90" href="/about/" title="Über die Kitchen page">
<a class="hover-white no-underline white-90" href="../about/" title="Über die Kitchen page">
Über die Kitchen
</a>
</li>
<li class="list f5 f4-ns fw4 dib pr3">
<a class="hover-white no-underline white-90" href="https://wiki.binary-kitchen.de/">
<a class="hover-white no-underline white-90" href="https://www.binary-kitchen.de/wiki">
Wiki
</a>
</li>
@ -172,7 +172,7 @@
</main>
<footer class="bg-near-black bottom-0 w-100 pa3" role="contentinfo">
<div class="flex justify-between">
<a class="f4 fw4 hover-white no-underline white-70 dn dib-ns pv2 ph3" href="http://binary.kitchen/" >
<a class="f4 fw4 hover-white no-underline white-70 dn dib-ns pv2 ph3" href="http://kitchenusqlz6f7f.onion/" >
♥ 2017 binary.kitchen
</a>
<div class="flex-l items-center">
@ -180,7 +180,7 @@
<ul class="pl0 mr3">
<li class="list f5 f4-ns fw4 dib pr3">
<a class="hover-white no-underline white-90" href="/contact/" title="Kontakt page">
<a class="hover-white no-underline white-90" href="../contact/" title="Kontakt page">
Kontakt
</a>
</li>
@ -218,7 +218,7 @@
</footer>
<script src="http://binary.kitchen/dist/app.bundle.js" async></script>
<script src="http://kitchenusqlz6f7f.onion/dist/app.bundle.js" async></script>
</body>
</html>

View File

@ -15,20 +15,20 @@
<META NAME="ROBOTS" CONTENT="NOINDEX, NOFOLLOW">
<link href='http://binary.kitchen/dist/main.css' rel='stylesheet' type="text/css" />
<link href='http://kitchenusqlz6f7f.onion/dist/main.css' rel='stylesheet' type="text/css" />
<link href="http://binary.kitchen/index.xml" rel="alternate" type="application/rss+xml" title="binary.kitchen" />
<link href="http://binary.kitchen/index.xml" rel="feed" type="application/rss+xml" title="binary.kitchen" />
<link href="http://kitchenusqlz6f7f.onion/index.xml" rel="alternate" type="application/rss+xml" title="binary.kitchen" />
<link href="http://kitchenusqlz6f7f.onion/index.xml" rel="feed" type="application/rss+xml" title="binary.kitchen" />
<meta property="og:title" content="Binary Kitchen" />
<meta property="og:description" content="Hack Space Regensburg" />
<meta property="og:type" content="website" />
<meta property="og:url" content="http://binary.kitchen/" />
<meta property="og:url" content="http://kitchenusqlz6f7f.onion/" />
@ -57,37 +57,37 @@
<header class="cover bg-top" style="background-image: url('http://binary.kitchen/kitchendoor.jpeg');">
<header class="cover bg-top" style="background-image: url('http://kitchenusqlz6f7f.onion/kitchendoor.jpeg');">
<div class="bg-black-60">
<nav class="pv3 ph3 ph4-ns" role="navigation">
<div class="flex-l justify-between items-center center">
<a href="http://binary.kitchen/" class="f3 fw2 hover-white no-underline white-90 dib">
<img src="/logo.png">
<a href="http://kitchenusqlz6f7f.onion/" class="f3 fw2 hover-white no-underline white-90 dib">
<img src="./logo.png">
</a>
<div class="flex-l items-center">
<ul class="pl0 mr3">
<li class="list f5 f4-ns fw4 dib pr3">
<a class="hover-white no-underline white-90" href="/kitchenlog/" title="Kitchenlog page">
<a class="hover-white no-underline white-90" href="./kitchenlog/" title="Kitchenlog page">
Kitchenlog
</a>
</li>
<li class="list f5 f4-ns fw4 dib pr3">
<a class="hover-white no-underline white-90" href="/projekte/" title="Projekte page">
<a class="hover-white no-underline white-90" href="./projekte/" title="Projekte page">
Projekte
</a>
</li>
<li class="list f5 f4-ns fw4 dib pr3">
<a class="hover-white no-underline white-90" href="/about/" title="Über die Kitchen page">
<a class="hover-white no-underline white-90" href="./about/" title="Über die Kitchen page">
Über die Kitchen
</a>
</li>
<li class="list f5 f4-ns fw4 dib pr3">
<a class="hover-white no-underline white-90" href="https://wiki.binary-kitchen.de/">
<a class="hover-white no-underline white-90" href="https://www.binary-kitchen.de/wiki">
Wiki
</a>
</li>
@ -139,36 +139,43 @@
<main class="pb7" role="main">
<article class="cf ph3 ph5-l pv3 pv4-l f4 tc-l center measure-wide lh-copy mid-gray">
<article class="w-100 cf ph3 ph5-l pv3 pv4-l f4 center lh-copy mid-gray">
<section class="w-100 f7 tc-l">
de: binäre Küche · ja: バイナリーキッチン · fr: Cuisine binaire · cn: 二进制厨房 · ru: Двоичная кухня · he:מטבח בינארי · ml: ബൈനറി പാചകം · pa: ਬਾਈਨਰੀ ਖਾਣਾ ਪਕਾਉਣ · ko: 이진 요리 · hy: Երկուական խոհարարություն · gu: Երկուական խոհարարություն · ar: الطبخ ثنائي · km: ចម្អិនអាហារគោលពីរ · ne: बाइनरी खाना पकाउने · el: Δυαδική μαγειρική · bar: zwidoppelte Kuchl
</section>
<p>
<h1 id="open-monday">Open Monday</h1>
</p>
<p>Jeden Montag Abend treffen wir uns in der Binary Kitchen.
Montags wird sowohl an Projekten gearbeitet als auch in lockerer
Atmosphäre diskutiert. Alle Interessierten sind herzlich eingeladen!
Ab 19 Uhr sind Mitglieder anzutreffen, die gerne eine Führung
anbieten.</p>
<section class="cf w-100 pv3 f6 ph3 ph4-ns bg-silver">
<p>Walderdorffstr. 13b, 93053 Regensburg | Bus: 2A Safferlingstrasse</p>
<div class="fl-l w-100 w-50-l pr4-ns center">
<article class="center mw5 mw6-ns hidden ba bg-white-60">
<h1 class="f4 bg-near-black white mv0 pv2 ph3">Open Monday</h1>
<div class="pa3 bt">
<p class="f6 f5-ns lh-copy measure mv0">
Jeden Montag Abend treffen wir uns in der Binary Kitchen.
Montags wird sowohl an Projekten gearbeitet als auch in lockerer
Atmosphäre diskutiert. Alle Interessierten sind herzlich eingeladen!
Ab 19 Uhr sind Mitglieder anzutreffen, die gerne eine Führung
anbieten.
</p>
<p>
Walderdorffstr. 13b, 93053 Regensburg<br>
Bus: 2A Safferlingstrasse
</p>
</div>
</article>
</div>
<p><iframe id="tooltip" width="425" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://www.openstreetmap.org/export/embed.html?bbox=12.117855548858644%2C49.00914581514452%2C12.119462192058563%2C49.01055152737082&amp;layer=mapnik" style="border: 1px solid black"></iframe><br/><a href="http://www.openstreetmap.org/#map=19/49.00985/12.11866">Karte vergrößern</a></p>
<div class="fl-l w-100 w-50-l pr4-ns center">
<iframe id="tooltip" width="425" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://www.openstreetmap.org/export/embed.html?bbox=12.117855548858644%2C49.00914581514452%2C12.119462192058563%2C49.01055152737082&amp;layer=mapnik" style="border: 1px solid black"></iframe><br/><a href="http://www.openstreetmap.org/#map=19/49.00985/12.11866">Karte vergrößern</a>
</div>
<h2 id="binary-kitchen">Binary Kitchen</h2>
</section>
<p>de: binäre Küche · ja: バイナリーキッチン · fr: Cuisine binaire · cn: 二进制厨房 · ru: Двоичная кухня · he:מטבח בינארי · ml: ബൈനറി പാചകം · pa: ਬਾਈਨਰੀ ਖਾਣਾ ਪਕਾਉਣ · ko: 이진 요리 · hy: Երկուական խոհարարություն · gu: Երկուական խոհարարություն · ar: الطبخ ثنائي · km: ចម្អិនអាហារគោលពីរ · ne: बाइनरी खाना पकाउने · el: Δυαδική μαγειρική · bar: zwidoppelte Kuchl</p>
<p>Rund um die Kitchen</p>
<p>Amtliches und Bürokratie (Dokumente, Formulare)</p>
<p>Lebercast</p>
<p>Members</p>
<hr>
<p><a href="https://twitter.com/binary_kitchen">Twitter</a> | <a href="http://lists.binary-kitchen.de/listinfo/allgemein|Mailingliste">Mailingliste</a> | <a href="https://webirc.hackint.org/#irc://irc.hackint.org/#binary-kitchen">IRC channel</a> | <a href="tel:0941378017400">0941 378 01 74 00</a></p>
<p><hr>
<a href="https://twitter.com/binary_kitchen">Twitter</a> | <a href="http://lists.binary-kitchen.de/listinfo/allgemein|Mailingliste">Mailingliste</a> | <a href="https://webirc.hackint.org/#irc://irc.hackint.org/#binary-kitchen">IRC channel</a> | <a href="tel:0941378017400">0941 378 01 74 00</a> | Dokumente, Formulare | Lebercast | Members</p>
</article>
@ -202,7 +209,7 @@
<div class="blah w-100">
<h1 class="f3 fw1 athelas mt0 lh-title">
<a href="/about/members/anti/" class="color-inherit dim link">
<a href="./about/members/anti/" class="color-inherit dim link">
</a>
</h1>
@ -210,7 +217,7 @@
anti Twitter @antihec
Short description
</div>
<a href="/about/members/anti/" class="ba b--moon-gray bg-light-gray br2 color-inherit dib f7 hover-bg-moon-gray link mt2 ph2 pv1">read more</a>
<a href="./about/members/anti/" class="ba b--moon-gray bg-light-gray br2 color-inherit dib f7 hover-bg-moon-gray link mt2 ph2 pv1">read more</a>
</div>
</div>
@ -227,7 +234,7 @@ Short description
<div class="blah w-100">
<h1 class="f3 fw1 athelas mt0 lh-title">
<a href="/about/members/heal/" class="color-inherit dim link">
<a href="./about/members/heal/" class="color-inherit dim link">
</a>
</h1>
@ -235,7 +242,7 @@ Short description
hael Twitter @OOOOOO1O1O1O
Short description
</div>
<a href="/about/members/heal/" class="ba b--moon-gray bg-light-gray br2 color-inherit dib f7 hover-bg-moon-gray link mt2 ph2 pv1">read more</a>
<a href="./about/members/heal/" class="ba b--moon-gray bg-light-gray br2 color-inherit dib f7 hover-bg-moon-gray link mt2 ph2 pv1">read more</a>
</div>
</div>
@ -254,7 +261,7 @@ Short description
</main>
<footer class="bg-near-black bottom-0 w-100 pa3" role="contentinfo">
<div class="flex justify-between">
<a class="f4 fw4 hover-white no-underline white-70 dn dib-ns pv2 ph3" href="http://binary.kitchen/" >
<a class="f4 fw4 hover-white no-underline white-70 dn dib-ns pv2 ph3" href="http://kitchenusqlz6f7f.onion/" >
♥ 2017 binary.kitchen
</a>
<div class="flex-l items-center">
@ -262,7 +269,7 @@ Short description
<ul class="pl0 mr3">
<li class="list f5 f4-ns fw4 dib pr3">
<a class="hover-white no-underline white-90" href="/contact/" title="Kontakt page">
<a class="hover-white no-underline white-90" href="./contact/" title="Kontakt page">
Kontakt
</a>
</li>
@ -300,7 +307,7 @@ Short description
</footer>
<script src="http://binary.kitchen/dist/app.bundle.js" async></script>
<script src="http://kitchenusqlz6f7f.onion/dist/app.bundle.js" async></script>
</body>
</html>

View File

@ -2,21 +2,21 @@
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>Binary Kitchen on binary.kitchen</title>
<link>http://binary.kitchen/</link>
<link>http://kitchenusqlz6f7f.onion/</link>
<description>Recent content in Binary Kitchen on binary.kitchen</description>
<generator>Hugo -- gohugo.io</generator>
<language>de-de</language>
<lastBuildDate>Thu, 23 Mar 2017 00:00:00 +0000</lastBuildDate>
<atom:link href="http://binary.kitchen/index.xml" rel="self" type="application/rss+xml" />
<atom:link href="http://kitchenusqlz6f7f.onion/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>November</title>
<link>http://binary.kitchen/kitchenlog/2017/11-november/</link>
<link>http://kitchenusqlz6f7f.onion/kitchenlog/2017/11-november/</link>
<pubDate>Wed, 29 Nov 2017 10:51:41 +0100</pubDate>
<guid>http://binary.kitchen/kitchenlog/2017/11-november/</guid>
<guid>http://kitchenusqlz6f7f.onion/kitchenlog/2017/11-november/</guid>
<description>Küchen-Log November 2017
In der Butchery wurden Wandregale angebracht
Einige Leute berichten vom Besuch der 34C3 Location in Leipzig
@ -26,10 +26,10 @@
<item>
<title>Oktober</title>
<link>http://binary.kitchen/kitchenlog/2017/10_october/</link>
<link>http://kitchenusqlz6f7f.onion/kitchenlog/2017/10_october/</link>
<pubDate>Sun, 29 Oct 2017 10:51:41 +0100</pubDate>
<guid>http://binary.kitchen/kitchenlog/2017/10_october/</guid>
<guid>http://kitchenusqlz6f7f.onion/kitchenlog/2017/10_october/</guid>
<description>Küchen-Log Oktober 2017
Testeintrag Oktober 1
Testeintrag Oktober 2
@ -40,30 +40,30 @@
<item>
<title></title>
<link>http://binary.kitchen/about/members/anti/</link>
<link>http://kitchenusqlz6f7f.onion/about/members/anti/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>http://binary.kitchen/about/members/anti/</guid>
<guid>http://kitchenusqlz6f7f.onion/about/members/anti/</guid>
<description>anti Twitter @antihec
Short description</description>
</item>
<item>
<title></title>
<link>http://binary.kitchen/about/members/heal/</link>
<link>http://kitchenusqlz6f7f.onion/about/members/heal/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>http://binary.kitchen/about/members/heal/</guid>
<guid>http://kitchenusqlz6f7f.onion/about/members/heal/</guid>
<description>hael Twitter @OOOOOO1O1O1O
Short description</description>
</item>
<item>
<title>Kontakt</title>
<link>http://binary.kitchen/contact/</link>
<link>http://kitchenusqlz6f7f.onion/contact/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>http://binary.kitchen/contact/</guid>
<guid>http://kitchenusqlz6f7f.onion/contact/</guid>
<description>Twitter | Mailingliste | IRC channel | tel:0941378017400
Send </description>
</item>

View File

@ -15,7 +15,7 @@
<META NAME="ROBOTS" CONTENT="NOINDEX, NOFOLLOW">
<link href='http://binary.kitchen/dist/main.css' rel='stylesheet' type="text/css" />
<link href='http://kitchenusqlz6f7f.onion/dist/main.css' rel='stylesheet' type="text/css" />
@ -30,13 +30,13 @@
Testeintrag Oktober 4
" />
<meta property="og:type" content="article" />
<meta property="og:url" content="http://binary.kitchen/kitchenlog/2017/10_october/" />
<meta property="og:url" content="http://kitchenusqlz6f7f.onion/kitchenlog/2017/10_october/" />
<meta property="article:published_time" content="2017-10-29T10:51:41&#43;01:00"/>
<meta property="article:modified_time" content="2017-10-29T10:51:41&#43;01:00"/>
<meta property="article:modified_time" content="2017-11-30T13:51:34&#43;01:00"/>
@ -82,33 +82,33 @@
<div class="bg-black">
<nav class="pv3 ph3 ph4-ns" role="navigation">
<div class="flex-l justify-between items-center center">
<a href="http://binary.kitchen/" class="f3 fw2 hover-white no-underline white-90 dib">
<img src="/logo.png">
<a href="http://kitchenusqlz6f7f.onion/" class="f3 fw2 hover-white no-underline white-90 dib">
<img src="../../../logo.png">
</a>
<div class="flex-l items-center">
<ul class="pl0 mr3">
<li class="list f5 f4-ns fw4 dib pr3">
<a class="hover-white no-underline white-90" href="/kitchenlog/" title="Kitchenlog page">
<a class="hover-white no-underline white-90" href="../../../kitchenlog/" title="Kitchenlog page">
Kitchenlog
</a>
</li>
<li class="list f5 f4-ns fw4 dib pr3">
<a class="hover-white no-underline white-90" href="/projekte/" title="Projekte page">
<a class="hover-white no-underline white-90" href="../../../projekte/" title="Projekte page">
Projekte
</a>
</li>
<li class="list f5 f4-ns fw4 dib pr3">
<a class="hover-white no-underline white-90" href="/about/" title="Über die Kitchen page">
<a class="hover-white no-underline white-90" href="../../../about/" title="Über die Kitchen page">
Über die Kitchen
</a>
</li>
<li class="list f5 f4-ns fw4 dib pr3">
<a class="hover-white no-underline white-90" href="https://wiki.binary-kitchen.de/">
<a class="hover-white no-underline white-90" href="https://www.binary-kitchen.de/wiki">
Wiki
</a>
</li>
@ -194,14 +194,14 @@
<li class="list f5 w-100 hover-bg-white nl1">
<a href="/kitchenlog/2017/11-november/" class="link ph2 pv2 db black">
<a href="../../../kitchenlog/2017/11-november/" class="link ph2 pv2 db black">
November
</a>
</li>
<li class="list f5 w-100 hover-bg-white nl1">
<a href="/kitchenlog/2017/10_october/" class="link ph2 pv2 db black o-50">
<a href="../../../kitchenlog/2017/10_october/" class="link ph2 pv2 db black o-50">
Oktober
</a>
</li>
@ -216,7 +216,7 @@
</main>
<footer class="bg-near-black bottom-0 w-100 pa3" role="contentinfo">
<div class="flex justify-between">
<a class="f4 fw4 hover-white no-underline white-70 dn dib-ns pv2 ph3" href="http://binary.kitchen/" >
<a class="f4 fw4 hover-white no-underline white-70 dn dib-ns pv2 ph3" href="http://kitchenusqlz6f7f.onion/" >
♥ 2017 binary.kitchen
</a>
<div class="flex-l items-center">
@ -224,7 +224,7 @@
<ul class="pl0 mr3">
<li class="list f5 f4-ns fw4 dib pr3">
<a class="hover-white no-underline white-90" href="/contact/" title="Kontakt page">
<a class="hover-white no-underline white-90" href="../../../contact/" title="Kontakt page">
Kontakt
</a>
</li>
@ -262,7 +262,7 @@
</footer>
<script src="http://binary.kitchen/dist/app.bundle.js" async></script>
<script src="http://kitchenusqlz6f7f.onion/dist/app.bundle.js" async></script>
</body>
</html>

View File

@ -15,7 +15,7 @@
<META NAME="ROBOTS" CONTENT="NOINDEX, NOFOLLOW">
<link href='http://binary.kitchen/dist/main.css' rel='stylesheet' type="text/css" />
<link href='http://kitchenusqlz6f7f.onion/dist/main.css' rel='stylesheet' type="text/css" />
@ -29,13 +29,13 @@
Es gibt neue Mio Mate
" />
<meta property="og:type" content="article" />
<meta property="og:url" content="http://binary.kitchen/kitchenlog/2017/11-november/" />
<meta property="og:url" content="http://kitchenusqlz6f7f.onion/kitchenlog/2017/11-november/" />
<meta property="article:published_time" content="2017-11-29T10:51:41&#43;01:00"/>
<meta property="article:modified_time" content="2017-11-29T10:51:41&#43;01:00"/>
<meta property="article:modified_time" content="2017-11-30T13:51:34&#43;01:00"/>
@ -79,33 +79,33 @@
<div class="bg-black">
<nav class="pv3 ph3 ph4-ns" role="navigation">
<div class="flex-l justify-between items-center center">
<a href="http://binary.kitchen/" class="f3 fw2 hover-white no-underline white-90 dib">
<img src="/logo.png">
<a href="http://kitchenusqlz6f7f.onion/" class="f3 fw2 hover-white no-underline white-90 dib">
<img src="../../../logo.png">
</a>
<div class="flex-l items-center">
<ul class="pl0 mr3">
<li class="list f5 f4-ns fw4 dib pr3">
<a class="hover-white no-underline white-90" href="/kitchenlog/" title="Kitchenlog page">
<a class="hover-white no-underline white-90" href="../../../kitchenlog/" title="Kitchenlog page">
Kitchenlog
</a>
</li>
<li class="list f5 f4-ns fw4 dib pr3">
<a class="hover-white no-underline white-90" href="/projekte/" title="Projekte page">
<a class="hover-white no-underline white-90" href="../../../projekte/" title="Projekte page">
Projekte
</a>
</li>
<li class="list f5 f4-ns fw4 dib pr3">
<a class="hover-white no-underline white-90" href="/about/" title="Über die Kitchen page">
<a class="hover-white no-underline white-90" href="../../../about/" title="Über die Kitchen page">
Über die Kitchen
</a>
</li>
<li class="list f5 f4-ns fw4 dib pr3">
<a class="hover-white no-underline white-90" href="https://wiki.binary-kitchen.de/">
<a class="hover-white no-underline white-90" href="https://www.binary-kitchen.de/wiki">
Wiki
</a>
</li>
@ -189,14 +189,14 @@
<li class="list f5 w-100 hover-bg-white nl1">
<a href="/kitchenlog/2017/11-november/" class="link ph2 pv2 db black o-50">
<a href="../../../kitchenlog/2017/11-november/" class="link ph2 pv2 db black o-50">
November
</a>
</li>
<li class="list f5 w-100 hover-bg-white nl1">
<a href="/kitchenlog/2017/10_october/" class="link ph2 pv2 db black">
<a href="../../../kitchenlog/2017/10_october/" class="link ph2 pv2 db black">
Oktober
</a>
</li>
@ -211,7 +211,7 @@
</main>
<footer class="bg-near-black bottom-0 w-100 pa3" role="contentinfo">
<div class="flex justify-between">
<a class="f4 fw4 hover-white no-underline white-70 dn dib-ns pv2 ph3" href="http://binary.kitchen/" >
<a class="f4 fw4 hover-white no-underline white-70 dn dib-ns pv2 ph3" href="http://kitchenusqlz6f7f.onion/" >
♥ 2017 binary.kitchen
</a>
<div class="flex-l items-center">
@ -219,7 +219,7 @@
<ul class="pl0 mr3">
<li class="list f5 f4-ns fw4 dib pr3">
<a class="hover-white no-underline white-90" href="/contact/" title="Kontakt page">
<a class="hover-white no-underline white-90" href="../../../contact/" title="Kontakt page">
Kontakt
</a>
</li>
@ -257,7 +257,7 @@
</footer>
<script src="http://binary.kitchen/dist/app.bundle.js" async></script>
<script src="http://kitchenusqlz6f7f.onion/dist/app.bundle.js" async></script>
</body>
</html>

View File

@ -15,20 +15,20 @@
<META NAME="ROBOTS" CONTENT="NOINDEX, NOFOLLOW">
<link href='http://binary.kitchen/dist/main.css' rel='stylesheet' type="text/css" />
<link href='http://kitchenusqlz6f7f.onion/dist/main.css' rel='stylesheet' type="text/css" />
<link href="http://binary.kitchen/kitchenlog/index.xml" rel="alternate" type="application/rss+xml" title="binary.kitchen" />
<link href="http://binary.kitchen/kitchenlog/index.xml" rel="feed" type="application/rss+xml" title="binary.kitchen" />
<link href="http://kitchenusqlz6f7f.onion/kitchenlog/index.xml" rel="alternate" type="application/rss+xml" title="binary.kitchen" />
<link href="http://kitchenusqlz6f7f.onion/kitchenlog/index.xml" rel="feed" type="application/rss+xml" title="binary.kitchen" />
<meta property="og:title" content="Kitchenlog" />
<meta property="og:description" content="Was läuft" />
<meta property="og:type" content="website" />
<meta property="og:url" content="http://binary.kitchen/kitchenlog/" />
<meta property="og:url" content="http://kitchenusqlz6f7f.onion/kitchenlog/" />
@ -57,37 +57,37 @@
<header class="cover bg-top" style="background-image: url('http://binary.kitchen/kitchendoor.jpeg');">
<header class="cover bg-top" style="background-image: url('http://kitchenusqlz6f7f.onion/kitchendoor.jpeg');">
<div class="bg-black-60">
<nav class="pv3 ph3 ph4-ns" role="navigation">
<div class="flex-l justify-between items-center center">
<a href="http://binary.kitchen/" class="f3 fw2 hover-white no-underline white-90 dib">
<img src="/logo.png">
<a href="http://kitchenusqlz6f7f.onion/" class="f3 fw2 hover-white no-underline white-90 dib">
<img src="../logo.png">
</a>
<div class="flex-l items-center">
<ul class="pl0 mr3">
<li class="list f5 f4-ns fw4 dib pr3">
<a class="hover-white no-underline white-90" href="/kitchenlog/" title="Kitchenlog page">
<a class="hover-white no-underline white-90" href="../kitchenlog/" title="Kitchenlog page">
Kitchenlog
</a>
</li>
<li class="list f5 f4-ns fw4 dib pr3">
<a class="hover-white no-underline white-90" href="/projekte/" title="Projekte page">
<a class="hover-white no-underline white-90" href="../projekte/" title="Projekte page">
Projekte
</a>
</li>
<li class="list f5 f4-ns fw4 dib pr3">
<a class="hover-white no-underline white-90" href="/about/" title="Über die Kitchen page">
<a class="hover-white no-underline white-90" href="../about/" title="Über die Kitchen page">
Über die Kitchen
</a>
</li>
<li class="list f5 f4-ns fw4 dib pr3">
<a class="hover-white no-underline white-90" href="https://wiki.binary-kitchen.de/">
<a class="hover-white no-underline white-90" href="https://www.binary-kitchen.de/wiki">
Wiki
</a>
</li>
@ -153,7 +153,7 @@
<div class="bg-white mb3 pa4 gray overflow-hidden">
<span class="f6 db">Kitchenlog</span>
<h1 class="f3 near-black">
<a href="/kitchenlog/2017/11-november/" class="link black dim">
<a href="../kitchenlog/2017/11-november/" class="link black dim">
November
</a>
</h1>
@ -174,7 +174,7 @@
<div class="bg-white mb3 pa4 gray overflow-hidden">
<span class="f6 db">Kitchenlog</span>
<h1 class="f3 near-black">
<a href="/kitchenlog/2017/10_october/" class="link black dim">
<a href="../kitchenlog/2017/10_october/" class="link black dim">
Oktober
</a>
</h1>
@ -199,7 +199,7 @@
</main>
<footer class="bg-near-black bottom-0 w-100 pa3" role="contentinfo">
<div class="flex justify-between">
<a class="f4 fw4 hover-white no-underline white-70 dn dib-ns pv2 ph3" href="http://binary.kitchen/" >
<a class="f4 fw4 hover-white no-underline white-70 dn dib-ns pv2 ph3" href="http://kitchenusqlz6f7f.onion/" >
♥ 2017 binary.kitchen
</a>
<div class="flex-l items-center">
@ -207,7 +207,7 @@
<ul class="pl0 mr3">
<li class="list f5 f4-ns fw4 dib pr3">
<a class="hover-white no-underline white-90" href="/contact/" title="Kontakt page">
<a class="hover-white no-underline white-90" href="../contact/" title="Kontakt page">
Kontakt
</a>
</li>
@ -245,7 +245,7 @@
</footer>
<script src="http://binary.kitchen/dist/app.bundle.js" async></script>
<script src="http://kitchenusqlz6f7f.onion/dist/app.bundle.js" async></script>
</body>
</html>

View File

@ -2,21 +2,21 @@
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>Kitchenlog on binary.kitchen</title>
<link>http://binary.kitchen/kitchenlog/</link>
<link>http://kitchenusqlz6f7f.onion/kitchenlog/</link>
<description>Recent content in Kitchenlog on binary.kitchen</description>
<generator>Hugo -- gohugo.io</generator>
<language>de-de</language>
<lastBuildDate>Tue, 28 Nov 2017 15:40:24 +0100</lastBuildDate>
<atom:link href="http://binary.kitchen/kitchenlog/index.xml" rel="self" type="application/rss+xml" />
<atom:link href="http://kitchenusqlz6f7f.onion/kitchenlog/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>November</title>
<link>http://binary.kitchen/kitchenlog/2017/11-november/</link>
<link>http://kitchenusqlz6f7f.onion/kitchenlog/2017/11-november/</link>
<pubDate>Wed, 29 Nov 2017 10:51:41 +0100</pubDate>
<guid>http://binary.kitchen/kitchenlog/2017/11-november/</guid>
<guid>http://kitchenusqlz6f7f.onion/kitchenlog/2017/11-november/</guid>
<description>Küchen-Log November 2017
In der Butchery wurden Wandregale angebracht
Einige Leute berichten vom Besuch der 34C3 Location in Leipzig
@ -26,10 +26,10 @@
<item>
<title>Oktober</title>
<link>http://binary.kitchen/kitchenlog/2017/10_october/</link>
<link>http://kitchenusqlz6f7f.onion/kitchenlog/2017/10_october/</link>
<pubDate>Sun, 29 Oct 2017 10:51:41 +0100</pubDate>
<guid>http://binary.kitchen/kitchenlog/2017/10_october/</guid>
<guid>http://kitchenusqlz6f7f.onion/kitchenlog/2017/10_october/</guid>
<description>Küchen-Log Oktober 2017
Testeintrag Oktober 1
Testeintrag Oktober 2

View File

@ -1 +1 @@
<!DOCTYPE html><html><head><title>http://binary.kitchen/kitchenlog/</title><link rel="canonical" href="http://binary.kitchen/kitchenlog/"/><meta name="robots" content="noindex"><meta http-equiv="content-type" content="text/html; charset=utf-8" /><meta http-equiv="refresh" content="0; url=http://binary.kitchen/kitchenlog/" /></head></html>
<!DOCTYPE html><html><head><title>http://kitchenusqlz6f7f.onion/kitchenlog/</title><link rel="canonical" href="http://kitchenusqlz6f7f.onion/kitchenlog/"/><meta name="robots" content="noindex"><meta http-equiv="content-type" content="text/html; charset=utf-8" /><meta http-equiv="refresh" content="0; url=http://kitchenusqlz6f7f.onion/kitchenlog/" /></head></html>

View File

@ -15,20 +15,20 @@
<META NAME="ROBOTS" CONTENT="NOINDEX, NOFOLLOW">
<link href='http://binary.kitchen/dist/main.css' rel='stylesheet' type="text/css" />
<link href='http://kitchenusqlz6f7f.onion/dist/main.css' rel='stylesheet' type="text/css" />
<link href="http://binary.kitchen/projekte/index.xml" rel="alternate" type="application/rss+xml" title="binary.kitchen" />
<link href="http://binary.kitchen/projekte/index.xml" rel="feed" type="application/rss+xml" title="binary.kitchen" />
<link href="http://kitchenusqlz6f7f.onion/projekte/index.xml" rel="alternate" type="application/rss+xml" title="binary.kitchen" />
<link href="http://kitchenusqlz6f7f.onion/projekte/index.xml" rel="feed" type="application/rss+xml" title="binary.kitchen" />
<meta property="og:title" content="Projekte" />
<meta property="og:description" content="The last theme you&#39;ll ever need. Maybe." />
<meta property="og:type" content="website" />
<meta property="og:url" content="http://binary.kitchen/projekte/" />
<meta property="og:url" content="http://kitchenusqlz6f7f.onion/projekte/" />
@ -57,37 +57,37 @@
<header class="cover bg-top" style="background-image: url('http://binary.kitchen/kitchendoor.jpeg');">
<header class="cover bg-top" style="background-image: url('http://kitchenusqlz6f7f.onion/kitchendoor.jpeg');">
<div class="bg-black-60">
<nav class="pv3 ph3 ph4-ns" role="navigation">
<div class="flex-l justify-between items-center center">
<a href="http://binary.kitchen/" class="f3 fw2 hover-white no-underline white-90 dib">
<img src="/logo.png">
<a href="http://kitchenusqlz6f7f.onion/" class="f3 fw2 hover-white no-underline white-90 dib">
<img src="../logo.png">
</a>
<div class="flex-l items-center">
<ul class="pl0 mr3">
<li class="list f5 f4-ns fw4 dib pr3">
<a class="hover-white no-underline white-90" href="/kitchenlog/" title="Kitchenlog page">
<a class="hover-white no-underline white-90" href="../kitchenlog/" title="Kitchenlog page">
Kitchenlog
</a>
</li>
<li class="list f5 f4-ns fw4 dib pr3">
<a class="hover-white no-underline white-90" href="/projekte/" title="Projekte page">
<a class="hover-white no-underline white-90" href="../projekte/" title="Projekte page">
Projekte
</a>
</li>
<li class="list f5 f4-ns fw4 dib pr3">
<a class="hover-white no-underline white-90" href="/about/" title="Über die Kitchen page">
<a class="hover-white no-underline white-90" href="../about/" title="Über die Kitchen page">
Über die Kitchen
</a>
</li>
<li class="list f5 f4-ns fw4 dib pr3">
<a class="hover-white no-underline white-90" href="https://wiki.binary-kitchen.de/">
<a class="hover-white no-underline white-90" href="https://www.binary-kitchen.de/wiki">
Wiki
</a>
</li>
@ -210,7 +210,7 @@ Die &ldquo;Projekte&rdquo; [[labor:bastelkiste|Bastelkiste]], [[labor:bastelkist
</main>
<footer class="bg-near-black bottom-0 w-100 pa3" role="contentinfo">
<div class="flex justify-between">
<a class="f4 fw4 hover-white no-underline white-70 dn dib-ns pv2 ph3" href="http://binary.kitchen/" >
<a class="f4 fw4 hover-white no-underline white-70 dn dib-ns pv2 ph3" href="http://kitchenusqlz6f7f.onion/" >
♥ 2017 binary.kitchen
</a>
<div class="flex-l items-center">
@ -218,7 +218,7 @@ Die &ldquo;Projekte&rdquo; [[labor:bastelkiste|Bastelkiste]], [[labor:bastelkist
<ul class="pl0 mr3">
<li class="list f5 f4-ns fw4 dib pr3">
<a class="hover-white no-underline white-90" href="/contact/" title="Kontakt page">
<a class="hover-white no-underline white-90" href="../contact/" title="Kontakt page">
Kontakt
</a>
</li>
@ -256,7 +256,7 @@ Die &ldquo;Projekte&rdquo; [[labor:bastelkiste|Bastelkiste]], [[labor:bastelkist
</footer>
<script src="http://binary.kitchen/dist/app.bundle.js" async></script>
<script src="http://kitchenusqlz6f7f.onion/dist/app.bundle.js" async></script>
</body>
</html>

View File

@ -2,13 +2,13 @@
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>Projekte on binary.kitchen</title>
<link>http://binary.kitchen/projekte/</link>
<link>http://kitchenusqlz6f7f.onion/projekte/</link>
<description>Recent content in Projekte on binary.kitchen</description>
<generator>Hugo -- gohugo.io</generator>
<language>de-de</language>
<lastBuildDate>Thu, 23 Mar 2017 00:00:00 +0000</lastBuildDate>
<atom:link href="http://binary.kitchen/projekte/index.xml" rel="self" type="application/rss+xml" />
<atom:link href="http://kitchenusqlz6f7f.onion/projekte/index.xml" rel="self" type="application/rss+xml" />
</channel>

View File

@ -1 +1 @@
<!DOCTYPE html><html><head><title>http://binary.kitchen/projekte/</title><link rel="canonical" href="http://binary.kitchen/projekte/"/><meta name="robots" content="noindex"><meta http-equiv="content-type" content="text/html; charset=utf-8" /><meta http-equiv="refresh" content="0; url=http://binary.kitchen/projekte/" /></head></html>
<!DOCTYPE html><html><head><title>http://kitchenusqlz6f7f.onion/projekte/</title><link rel="canonical" href="http://kitchenusqlz6f7f.onion/projekte/"/><meta name="robots" content="noindex"><meta http-equiv="content-type" content="text/html; charset=utf-8" /><meta http-equiv="refresh" content="0; url=http://kitchenusqlz6f7f.onion/projekte/" /></head></html>

View File

@ -3,81 +3,84 @@
xmlns:xhtml="http://www.w3.org/1999/xhtml">
<url>
<loc>http://binary.kitchen/kitchenlog/2017/11-november/</loc>
<lastmod>2017-11-29T10:51:41+01:00</lastmod>
<loc>http://kitchenusqlz6f7f.onion/kitchenlog/2017/11-november/</loc>
<lastmod>2017-11-30T13:51:34+01:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.5</priority>
</url>
<url>
<loc>http://binary.kitchen/kitchenlog/</loc>
<lastmod>2017-11-28T15:40:24+01:00</lastmod>
<loc>http://kitchenusqlz6f7f.onion/kitchenlog/</loc>
<lastmod>2017-11-28T16:47:38+01:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.5</priority>
</url>
<url>
<loc>http://binary.kitchen/kitchenlog/2017/10_october/</loc>
<lastmod>2017-10-29T10:51:41+01:00</lastmod>
<loc>http://kitchenusqlz6f7f.onion/kitchenlog/2017/10_october/</loc>
<lastmod>2017-11-30T13:51:34+01:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.5</priority>
</url>
<url>
<loc>http://binary.kitchen/</loc>
<lastmod>2017-03-23T00:00:00+00:00</lastmod>
<loc>http://kitchenusqlz6f7f.onion/</loc>
<lastmod>2017-11-30T13:51:34+01:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.5</priority>
</url>
<url>
<loc>http://binary.kitchen/projekte/</loc>
<lastmod>2017-03-23T00:00:00+00:00</lastmod>
<loc>http://kitchenusqlz6f7f.onion/projekte/</loc>
<lastmod>2017-12-04T15:50:00+01:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.5</priority>
</url>
<url>
<loc>http://binary.kitchen/about/</loc>
<lastmod>2017-03-23T00:00:00+00:00</lastmod>
<loc>http://kitchenusqlz6f7f.onion/about/</loc>
<lastmod>2017-11-29T15:10:21+01:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.5</priority>
</url>
<url>
<loc>http://binary.kitchen/about/members/anti/</loc>
<loc>http://kitchenusqlz6f7f.onion/about/members/anti/</loc>
<lastmod>2017-11-28T16:47:38+01:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.5</priority>
</url>
<url>
<loc>http://binary.kitchen/about/members/heal/</loc>
<loc>http://kitchenusqlz6f7f.onion/about/members/heal/</loc>
<lastmod>2017-11-30T13:51:34+01:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.5</priority>
</url>
<url>
<loc>http://binary.kitchen/categories/</loc>
<loc>http://kitchenusqlz6f7f.onion/categories/</loc>
<changefreq>weekly</changefreq>
<priority>0</priority>
</url>
<url>
<loc>http://binary.kitchen/contact/</loc>
<loc>http://kitchenusqlz6f7f.onion/contact/</loc>
<lastmod>2017-11-30T13:51:34+01:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.5</priority>
</url>
<url>
<loc>http://binary.kitchen/tags/log/</loc>
<lastmod>2017-11-28T15:40:24+01:00</lastmod>
<loc>http://kitchenusqlz6f7f.onion/tags/log/</loc>
<lastmod>2017-11-28T16:47:38+01:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0</priority>
</url>
<url>
<loc>http://binary.kitchen/tags/</loc>
<lastmod>2017-11-28T15:40:24+01:00</lastmod>
<loc>http://kitchenusqlz6f7f.onion/tags/</loc>
<lastmod>2017-11-28T16:47:38+01:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0</priority>
</url>

View File

@ -15,20 +15,20 @@
<META NAME="ROBOTS" CONTENT="NOINDEX, NOFOLLOW">
<link href='http://binary.kitchen/dist/main.css' rel='stylesheet' type="text/css" />
<link href='http://kitchenusqlz6f7f.onion/dist/main.css' rel='stylesheet' type="text/css" />
<link href="http://binary.kitchen/tags/index.xml" rel="alternate" type="application/rss+xml" title="binary.kitchen" />
<link href="http://binary.kitchen/tags/index.xml" rel="feed" type="application/rss+xml" title="binary.kitchen" />
<link href="http://kitchenusqlz6f7f.onion/tags/index.xml" rel="alternate" type="application/rss+xml" title="binary.kitchen" />
<link href="http://kitchenusqlz6f7f.onion/tags/index.xml" rel="feed" type="application/rss+xml" title="binary.kitchen" />
<meta property="og:title" content="Tags" />
<meta property="og:description" content="The last theme you&#39;ll ever need. Maybe." />
<meta property="og:type" content="website" />
<meta property="og:url" content="http://binary.kitchen/tags/" />
<meta property="og:url" content="http://kitchenusqlz6f7f.onion/tags/" />
@ -57,37 +57,37 @@
<header class="cover bg-top" style="background-image: url('http://binary.kitchen/kitchendoor.jpeg');">
<header class="cover bg-top" style="background-image: url('http://kitchenusqlz6f7f.onion/kitchendoor.jpeg');">
<div class="bg-black-60">
<nav class="pv3 ph3 ph4-ns" role="navigation">
<div class="flex-l justify-between items-center center">
<a href="http://binary.kitchen/" class="f3 fw2 hover-white no-underline white-90 dib">
<img src="/logo.png">
<a href="http://kitchenusqlz6f7f.onion/" class="f3 fw2 hover-white no-underline white-90 dib">
<img src="../logo.png">
</a>
<div class="flex-l items-center">
<ul class="pl0 mr3">
<li class="list f5 f4-ns fw4 dib pr3">
<a class="hover-white no-underline white-90" href="/kitchenlog/" title="Kitchenlog page">
<a class="hover-white no-underline white-90" href="../kitchenlog/" title="Kitchenlog page">
Kitchenlog
</a>
</li>
<li class="list f5 f4-ns fw4 dib pr3">
<a class="hover-white no-underline white-90" href="/projekte/" title="Projekte page">
<a class="hover-white no-underline white-90" href="../projekte/" title="Projekte page">
Projekte
</a>
</li>
<li class="list f5 f4-ns fw4 dib pr3">
<a class="hover-white no-underline white-90" href="/about/" title="Über die Kitchen page">
<a class="hover-white no-underline white-90" href="../about/" title="Über die Kitchen page">
Über die Kitchen
</a>
</li>
<li class="list f5 f4-ns fw4 dib pr3">
<a class="hover-white no-underline white-90" href="https://wiki.binary-kitchen.de/">
<a class="hover-white no-underline white-90" href="https://www.binary-kitchen.de/wiki">
Wiki
</a>
</li>
@ -145,7 +145,7 @@
<section class="ph4">
<h2 class="f1">
<a href="/tags/log" class="link blue hover-black">
<a href="../tags/log" class="link blue hover-black">
Tag: log
</a>
</h2>
@ -154,7 +154,7 @@
<div class="bg-white mb3 pa4 gray overflow-hidden">
<span class="f6 db">Kitchenlog</span>
<h1 class="f3 near-black">
<a href="/kitchenlog/" class="link black dim">
<a href="../kitchenlog/" class="link black dim">
Kitchenlog
</a>
</h1>
@ -172,7 +172,7 @@
</main>
<footer class="bg-near-black bottom-0 w-100 pa3" role="contentinfo">
<div class="flex justify-between">
<a class="f4 fw4 hover-white no-underline white-70 dn dib-ns pv2 ph3" href="http://binary.kitchen/" >
<a class="f4 fw4 hover-white no-underline white-70 dn dib-ns pv2 ph3" href="http://kitchenusqlz6f7f.onion/" >
♥ 2017 binary.kitchen
</a>
<div class="flex-l items-center">
@ -180,7 +180,7 @@
<ul class="pl0 mr3">
<li class="list f5 f4-ns fw4 dib pr3">
<a class="hover-white no-underline white-90" href="/contact/" title="Kontakt page">
<a class="hover-white no-underline white-90" href="../contact/" title="Kontakt page">
Kontakt
</a>
</li>
@ -218,7 +218,7 @@
</footer>
<script src="http://binary.kitchen/dist/app.bundle.js" async></script>
<script src="http://kitchenusqlz6f7f.onion/dist/app.bundle.js" async></script>
</body>
</html>

View File

@ -2,21 +2,21 @@
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>Tags on binary.kitchen</title>
<link>http://binary.kitchen/tags/</link>
<link>http://kitchenusqlz6f7f.onion/tags/</link>
<description>Recent content in Tags on binary.kitchen</description>
<generator>Hugo -- gohugo.io</generator>
<language>de-de</language>
<lastBuildDate>Tue, 28 Nov 2017 15:40:24 +0100</lastBuildDate>
<atom:link href="http://binary.kitchen/tags/index.xml" rel="self" type="application/rss+xml" />
<atom:link href="http://kitchenusqlz6f7f.onion/tags/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Log</title>
<link>http://binary.kitchen/tags/log/</link>
<link>http://kitchenusqlz6f7f.onion/tags/log/</link>
<pubDate>Tue, 28 Nov 2017 15:40:24 +0100</pubDate>
<guid>http://binary.kitchen/tags/log/</guid>
<guid>http://kitchenusqlz6f7f.onion/tags/log/</guid>
<description></description>
</item>

View File

@ -15,20 +15,20 @@
<META NAME="ROBOTS" CONTENT="NOINDEX, NOFOLLOW">
<link href='http://binary.kitchen/dist/main.css' rel='stylesheet' type="text/css" />
<link href='http://kitchenusqlz6f7f.onion/dist/main.css' rel='stylesheet' type="text/css" />
<link href="http://binary.kitchen/tags/log/index.xml" rel="alternate" type="application/rss+xml" title="binary.kitchen" />
<link href="http://binary.kitchen/tags/log/index.xml" rel="feed" type="application/rss+xml" title="binary.kitchen" />
<link href="http://kitchenusqlz6f7f.onion/tags/log/index.xml" rel="alternate" type="application/rss+xml" title="binary.kitchen" />
<link href="http://kitchenusqlz6f7f.onion/tags/log/index.xml" rel="feed" type="application/rss+xml" title="binary.kitchen" />
<meta property="og:title" content="Log" />
<meta property="og:description" content="The last theme you&#39;ll ever need. Maybe." />
<meta property="og:type" content="website" />
<meta property="og:url" content="http://binary.kitchen/tags/log/" />
<meta property="og:url" content="http://kitchenusqlz6f7f.onion/tags/log/" />
@ -57,37 +57,37 @@
<header class="cover bg-top" style="background-image: url('http://binary.kitchen/kitchendoor.jpeg');">
<header class="cover bg-top" style="background-image: url('http://kitchenusqlz6f7f.onion/kitchendoor.jpeg');">
<div class="bg-black-60">
<nav class="pv3 ph3 ph4-ns" role="navigation">
<div class="flex-l justify-between items-center center">
<a href="http://binary.kitchen/" class="f3 fw2 hover-white no-underline white-90 dib">
<img src="/logo.png">
<a href="http://kitchenusqlz6f7f.onion/" class="f3 fw2 hover-white no-underline white-90 dib">
<img src="../../logo.png">
</a>
<div class="flex-l items-center">
<ul class="pl0 mr3">
<li class="list f5 f4-ns fw4 dib pr3">
<a class="hover-white no-underline white-90" href="/kitchenlog/" title="Kitchenlog page">
<a class="hover-white no-underline white-90" href="../../kitchenlog/" title="Kitchenlog page">
Kitchenlog
</a>
</li>
<li class="list f5 f4-ns fw4 dib pr3">
<a class="hover-white no-underline white-90" href="/projekte/" title="Projekte page">
<a class="hover-white no-underline white-90" href="../../projekte/" title="Projekte page">
Projekte
</a>
</li>
<li class="list f5 f4-ns fw4 dib pr3">
<a class="hover-white no-underline white-90" href="/about/" title="Über die Kitchen page">
<a class="hover-white no-underline white-90" href="../../about/" title="Über die Kitchen page">
Über die Kitchen
</a>
</li>
<li class="list f5 f4-ns fw4 dib pr3">
<a class="hover-white no-underline white-90" href="https://wiki.binary-kitchen.de/">
<a class="hover-white no-underline white-90" href="https://www.binary-kitchen.de/wiki">
Wiki
</a>
</li>
@ -149,7 +149,7 @@
<div class="bg-white mb3 pa4 gray overflow-hidden">
<span class="f6 db">Kitchenlog</span>
<h1 class="f3 near-black">
<a href="/kitchenlog/" class="link black dim">
<a href="../../kitchenlog/" class="link black dim">
Kitchenlog
</a>
</h1>
@ -167,7 +167,7 @@
</main>
<footer class="bg-near-black bottom-0 w-100 pa3" role="contentinfo">
<div class="flex justify-between">
<a class="f4 fw4 hover-white no-underline white-70 dn dib-ns pv2 ph3" href="http://binary.kitchen/" >
<a class="f4 fw4 hover-white no-underline white-70 dn dib-ns pv2 ph3" href="http://kitchenusqlz6f7f.onion/" >
♥ 2017 binary.kitchen
</a>
<div class="flex-l items-center">
@ -175,7 +175,7 @@
<ul class="pl0 mr3">
<li class="list f5 f4-ns fw4 dib pr3">
<a class="hover-white no-underline white-90" href="/contact/" title="Kontakt page">
<a class="hover-white no-underline white-90" href="../../contact/" title="Kontakt page">
Kontakt
</a>
</li>
@ -213,7 +213,7 @@
</footer>
<script src="http://binary.kitchen/dist/app.bundle.js" async></script>
<script src="http://kitchenusqlz6f7f.onion/dist/app.bundle.js" async></script>
</body>
</html>

View File

@ -2,21 +2,21 @@
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>Log on binary.kitchen</title>
<link>http://binary.kitchen/tags/log/</link>
<link>http://kitchenusqlz6f7f.onion/tags/log/</link>
<description>Recent content in Log on binary.kitchen</description>
<generator>Hugo -- gohugo.io</generator>
<language>de-de</language>
<lastBuildDate>Tue, 28 Nov 2017 15:40:24 +0100</lastBuildDate>
<atom:link href="http://binary.kitchen/tags/log/index.xml" rel="self" type="application/rss+xml" />
<atom:link href="http://kitchenusqlz6f7f.onion/tags/log/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Kitchenlog</title>
<link>http://binary.kitchen/kitchenlog/</link>
<link>http://kitchenusqlz6f7f.onion/kitchenlog/</link>
<pubDate>Tue, 28 Nov 2017 15:40:24 +0100</pubDate>
<guid>http://binary.kitchen/kitchenlog/</guid>
<guid>http://kitchenusqlz6f7f.onion/kitchenlog/</guid>
<description></description>
</item>