2024-03-05 17:04:12 +01:00
---
title: Markus Heurung
layout: default
root: true
---
< p >
I'm a family guy with a loving partner, three great kids and a cuddly and very patient labradoodle.
< / p >
< p >
Based in Hammelburg, Germany< span class = "time" data-timestamp-text = ", where it's currently {time}" > < / span > . Born at 331ppm.
< / p >
< p >
This is my happy place on the internet.
< / p >
< nav aria-label = "Additional content" >
< a href = "https://omg.muhh.lol/now" > Now< / a > < hr class = "inline-hr" >
2024-09-13 16:54:22 +02:00
< a href = "{% link _pages/ideas.md %}" > Ideas< / a > < hr class = "inline-hr" >
2024-03-05 17:04:12 +01:00
< a href = "{% link _pages/qna.md %}" > Q& A< / a > < hr class = "inline-hr" >
< a href = "{% link _pages/blogroll.md %}" > Blogroll< / a > < hr class = "inline-hr" >
<!-- <a href="{% link _pages/banners.md %}">88×31</a> -->
<!-- <a href="{% link _pages/uses.md %}">Uses</a> -->
<!-- <a href="{% link _pages/defaults.md %}">Defaults</a> -->
< / nav >
< nav aria-label = "Social" >
2024-09-13 17:02:04 +02:00
< a href = "https://www.byzero.de" rel = "me" > My old blog< / a > < hr class = "inline-hr" > < a href = "https://social.lol/@muhh" rel = "me" > Mastodon< / a > < hr class = "inline-hr" > < a href = "https://omg.muhh.lol" rel = "me" > OMG.LOL< / a > < hr class = "inline-hr" > < a href = "https://www.hammelblog.de" rel = "me" > German blog< / a > < hr class = "inline-hr" > < a href = "https://watch.muhh.lol" rel = "me" > Livestream< / a >
2024-03-05 17:04:12 +01:00
< / nav >
< hr class = "hr" >
{% comment %}
< h2 class = "text" > Stories< / h2 > < a href = "/stories.xml" class = "styled-link" > RSS< / a > < a href = "https://github.com/dddddddddzzzz/OpenStories" class = "styled-link" > What are these?< / a >
{% include stories.html lang="en" %}
< hr class = "hr" >
< h2 class = "text" > Photos< / h2 > < a href = "/photos" class = "styled-link" > All photos< / a > < a href = "/photos.xml" class = "styled-link" > RSS< / a >
< div class = "photos" >
{% assign photos = site.data.photos | slice: 0, 5 %}
{% for photo in photos %}
< a href = "/photos#P{{ photo.guid}}" class = "image-link" >
< img src = "{{ photo.path }}/thumbnail" height = "200" alt = "{{ photo.alt }}" loading = "lazy" style = "aspect-ratio: {{ photo.ratio }};" >
< / a >
{% endfor %}
< / div >
< h2 class = "text" > Film photos< / h2 > < a href = "/film" class = "styled-link" > All film photos< / a > < a href = "/film.xml" class = "styled-link" > RSS< / a >
< div class = "photos" >
{% assign photos = site.data.film | reverse | slice: 0, 5 %}
{% for photo in photos %}
{% capture image_url %}{% for url in photo.variants %}{% if url contains "/thumbnail" %}{{ url }}{% endif %}{% endfor %}{% endcapture %}
< a href = "/film#P{{ photo.id}}" class = "image-link" >
< img src = "{{ image_url }}" height = "200" alt = "{{ photo.meta.alt }}" loading = "lazy" style = "aspect-ratio: {{ photo.meta.ratio }};" >
< / a >
{% endfor %}
< / div >
< hr class = "hr" >
{% endcomment %}
{% assign note = site.notes | last %}
< h2 class = "text" > Notes< / h2 > < a href = "/notes" class = "styled-link" > Recent notes< / a > < a href = "/notes.xml" class = "styled-link" > RSS< / a >
< div class = "note" >
< div class = "note-heading" >
Latest: {{ note.date | date: "%B %e, %Y" }}
< / div >
{{ note.content | markdownify }}
< / div >
< hr class = "hr" >
< h2 class = "text" > Posts< / h2 > < a href = "/feed.xml" class = "styled-link" > RSS< / a >
< ul aria-label = "posts" class = "terminal" >
{% assign pages = site.pages | where: "feature", 1 %}
{% for post in pages %}
< li class = "line" > < a href = "{{ post.url }}" > {{ post.title }}< / a > < / li >
{% endfor %}
2024-05-02 22:53:26 +02:00
{% assign posts = site.posts %}
2024-03-05 17:04:12 +01:00
{% for post in posts %}
< li class = "line" > < a href = "{{ post.url }}" > {{ post.title }}< / a > < br >
< time datetime = "{{ post.date | date_to_xmlschema }}" > {{ post.date | date: "%B %e, %Y" }}< / time > < / li >
{% endfor %}
< / ul >