Compare commits
No commits in common. "gh-pages" and "main" have entirely different histories.
225 changed files with 6889 additions and 555 deletions
39
.forgejo/workflows/deploy.yml
Normal file
39
.forgejo/workflows/deploy.yml
Normal file
|
@ -0,0 +1,39 @@
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
with:
|
||||||
|
submodules: true
|
||||||
|
fetch-depth: 0
|
||||||
|
|
||||||
|
- name: Setup Hugo
|
||||||
|
uses: https://github.com/peaceiris/actions-hugo.git@v2
|
||||||
|
with:
|
||||||
|
hugo-version: 'latest'
|
||||||
|
extended: true
|
||||||
|
|
||||||
|
- name: Setup node
|
||||||
|
uses: actions/setup-node@v3
|
||||||
|
with:
|
||||||
|
node-version: 18
|
||||||
|
|
||||||
|
- name: Build
|
||||||
|
run: |
|
||||||
|
npm i
|
||||||
|
hugo --minify
|
||||||
|
|
||||||
|
- name: Setup Go
|
||||||
|
uses: actions/setup-go@v3
|
||||||
|
with:
|
||||||
|
go-version: "1.21"
|
||||||
|
|
||||||
|
- name: Deploy
|
||||||
|
uses: https://itsblue.dev/actions/codeberg-pages-deploy@v1
|
||||||
|
with:
|
||||||
|
folder: ./public
|
5
.gitignore
vendored
Normal file
5
.gitignore
vendored
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
resources/
|
||||||
|
node_modules
|
||||||
|
public
|
||||||
|
.hugo_build.lock
|
||||||
|
hugo_stats.json
|
177
config.toml
Normal file
177
config.toml
Normal file
|
@ -0,0 +1,177 @@
|
||||||
|
baseurl = "https://ellis.reisen"
|
||||||
|
metaDataFormat = "yaml"
|
||||||
|
title = "Be Ellive"
|
||||||
|
description = "Elli on tour."
|
||||||
|
theme = "elli"
|
||||||
|
language = "de"
|
||||||
|
|
||||||
|
[params]
|
||||||
|
introTitle = "Elli's Reisen durchs Zauberland."
|
||||||
|
introSubtitle = "2019 kam Elli mit einem 'Wirbelsturm'. Seitdem sind wir mit ihr auf dem Weg in die Smaragdenstadt. Vielleicht treffen wir unterwegs den Eisenernen Holzfäller, den Scheuch oder den Löwen ..."
|
||||||
|
introPhoto = "/elli_title.jpg"
|
||||||
|
logo = "/elli-logo.png"
|
||||||
|
|
||||||
|
# Enable the darkmode toggle in header
|
||||||
|
darkModeToggle = true
|
||||||
|
|
||||||
|
# Enable search in header
|
||||||
|
enableSearch = true
|
||||||
|
|
||||||
|
# Option to customize the search parameters of a page
|
||||||
|
# Below are the supported options; Note that including entire content
|
||||||
|
# may slowdown the loading of search results
|
||||||
|
# Title of page is included by default
|
||||||
|
searchKeys = [
|
||||||
|
"tags",
|
||||||
|
"date",
|
||||||
|
"categories",
|
||||||
|
"summary",
|
||||||
|
"content",
|
||||||
|
"link",
|
||||||
|
"author"
|
||||||
|
]
|
||||||
|
|
||||||
|
# Custom copyright - optional
|
||||||
|
copyright = "Copyright © 2023 - Jens Noack · All rights reserved"
|
||||||
|
favicon = "/favicon.svg"
|
||||||
|
|
||||||
|
# Color for the intro details and social links block, not applicable for dark mode
|
||||||
|
# Supported values: Any color from TailwindCSS default colors
|
||||||
|
# Reference: https://tailwindcss.com/docs/customizing-colors
|
||||||
|
ascentColor = "bg-blue-100"
|
||||||
|
|
||||||
|
# The page bundle that is shown on the front page
|
||||||
|
frontBundle = "blog"
|
||||||
|
|
||||||
|
# Used to hide the post metadata such as posted date, reading time and word count
|
||||||
|
# Can be used at site level or page level
|
||||||
|
hideMeta = false
|
||||||
|
|
||||||
|
# To hide "Other languages" option if the post is available in multiple languages
|
||||||
|
# Can be used at site level or page level
|
||||||
|
hideOtherLanguages = true
|
||||||
|
|
||||||
|
# Add support for Table of contents
|
||||||
|
# Can be added to a page level also in markdown frontmatter
|
||||||
|
toc = true
|
||||||
|
|
||||||
|
# Hides the thumbnail in post view
|
||||||
|
# Thumbnails in home and blog pages will still be shown
|
||||||
|
# This setting can also be in page's markdown file
|
||||||
|
hidePageThumbnail = false
|
||||||
|
|
||||||
|
# Comments system
|
||||||
|
[params.comments]
|
||||||
|
# Supports disqus, giscus and utterances
|
||||||
|
# Check hugo docs for setting up disqus
|
||||||
|
system = "giscus"
|
||||||
|
|
||||||
|
# Options for giscus, exclude hyphens
|
||||||
|
repo = ""
|
||||||
|
repoid = ""
|
||||||
|
category = ""
|
||||||
|
categoryid = ""
|
||||||
|
mapping = ""
|
||||||
|
strict = ""
|
||||||
|
reactionsenabled = ""
|
||||||
|
emitmetadata = ""
|
||||||
|
inputposition = ""
|
||||||
|
theme = ""
|
||||||
|
|
||||||
|
# Options for utterances, exclude hyphens
|
||||||
|
# repo = ""
|
||||||
|
# issueterm = ""
|
||||||
|
# theme = ""
|
||||||
|
|
||||||
|
#[params.homepage.social]
|
||||||
|
# Global params common for both languages
|
||||||
|
#title = "Follow me"
|
||||||
|
#description = "I work on everything coding and tweet developer memes"
|
||||||
|
|
||||||
|
#[[params.homepage.social.icons]]
|
||||||
|
#website = "twitter"
|
||||||
|
#url = "https://twitter.com/"
|
||||||
|
#[[params.homepage.social.icons]]
|
||||||
|
#website = "linkedin"
|
||||||
|
#url = "https://linkedin.com/in/"
|
||||||
|
#[[params.homepage.social.icons]]
|
||||||
|
#website = "xing"
|
||||||
|
#url = "https://www.xing.com/profile/"
|
||||||
|
#[[params.homepage.social.icons]]
|
||||||
|
#website = "telegram"
|
||||||
|
#url = "https://t.me/"
|
||||||
|
#[[params.homepage.social.icons]]
|
||||||
|
#website = "github"
|
||||||
|
#url = "https://github.com/"
|
||||||
|
#[[params.homepage.social.icons]]
|
||||||
|
#website = "buymeacoffee"
|
||||||
|
#url = "https://www.buymeacoffee.com/"
|
||||||
|
#[[params.homepage.social.icons]]
|
||||||
|
#website = "medium"
|
||||||
|
#url = "https://medium.com/"
|
||||||
|
#[[params.homepage.social.icons]]
|
||||||
|
#website = "reddit"
|
||||||
|
#url = "https://reddit.com/"
|
||||||
|
#[[params.homepage.social.icons]]
|
||||||
|
#website = "dribbble"
|
||||||
|
#url = "https://dribbble.com/"
|
||||||
|
#[[params.homepage.social.icons]]
|
||||||
|
#website = "stackoverflow"
|
||||||
|
#url = "https://stackoverflow.com/"
|
||||||
|
#[[params.homepage.social.icons]]
|
||||||
|
#website = "xda"
|
||||||
|
#url = "https://forum.xda-developers.com/"
|
||||||
|
#[[params.homepage.social.icons]]
|
||||||
|
#website = "tiktok"
|
||||||
|
#url = "https://tiktok.com"
|
||||||
|
#[[params.homepage.social.icons]]
|
||||||
|
#website = "googlescholar"
|
||||||
|
#url = "https://scholar.google.com/"
|
||||||
|
#[[params.homepage.social.icons]]
|
||||||
|
#website = "mastodon"
|
||||||
|
#url = "https://joinmastodon.org"
|
||||||
|
#[[params.homepage.social.icons]]
|
||||||
|
#website = "youtube"
|
||||||
|
#url = "https://youtube.com"
|
||||||
|
#[[params.homepage.social.icons]]
|
||||||
|
#website = "instagram"
|
||||||
|
#url = "https://instagram.com"
|
||||||
|
#[[params.homepage.social.icons]]
|
||||||
|
#website = "facebook"
|
||||||
|
#url = "https://facebook.com"
|
||||||
|
#[[params.homepage.social.icons]]
|
||||||
|
#website = "behance"
|
||||||
|
#url = "https://behance.net"
|
||||||
|
|
||||||
|
[[menu.main]]
|
||||||
|
name = "About"
|
||||||
|
url = "/about"
|
||||||
|
|
||||||
|
[[menu.main]]
|
||||||
|
name = "Blog"
|
||||||
|
url = "blog"
|
||||||
|
weight = 1
|
||||||
|
|
||||||
|
[[de.menu.main]]
|
||||||
|
name = "Über mich"
|
||||||
|
url = "page/about/"
|
||||||
|
weight = 2
|
||||||
|
|
||||||
|
[[menu.main]]
|
||||||
|
name = "Tags"
|
||||||
|
url = "tags"
|
||||||
|
weight = 3
|
||||||
|
|
||||||
|
[build]
|
||||||
|
writeStats = true
|
||||||
|
|
||||||
|
[outputs]
|
||||||
|
home = ["HTML", "RSS", "JSON"]
|
||||||
|
|
||||||
|
# syntax highlight settings
|
||||||
|
[markup]
|
||||||
|
[markup.highlight]
|
||||||
|
style = "dracula"
|
||||||
|
[markup.goldmark.renderer]
|
||||||
|
# Enable to include inline HTML
|
||||||
|
unsafe = true
|
5
content/_index.md
Normal file
5
content/_index.md
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
---
|
||||||
|
author: Jens Noack
|
||||||
|
title: Home of Elli
|
||||||
|
date: 2023-08-31
|
||||||
|
---
|
13
content/about.md
Normal file
13
content/about.md
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
---
|
||||||
|
author: Jens Noack
|
||||||
|
title: Be Ellive
|
||||||
|
date: 2023-08-31
|
||||||
|
description:
|
||||||
|
keywords: ["about-us", "about-elli", "contact"]
|
||||||
|
type: about
|
||||||
|
---
|
||||||
|
|
||||||
|
Elli. Alexander Wolkov - Zauberer der Smaragdenstadt ...
|
||||||
|
|
||||||
|
- Warum Elli?
|
||||||
|
- Warum diese Seite?
|
10
content/blog/Albanventure.md
Normal file
10
content/blog/Albanventure.md
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
---
|
||||||
|
author: "Katja Scheer-Schmidt, Jens Noack"
|
||||||
|
title: "Albaniencamping"
|
||||||
|
date: 2023-06-30
|
||||||
|
lastmod: 2023-08-31
|
||||||
|
description: "We call it Albanventure. Fast 3 Wochen in den Bergen und an der Küste von Albaninen ..."
|
||||||
|
tags: ["Albanien"]
|
||||||
|
thumbnail: /albanien.jpg
|
||||||
|
---
|
||||||
|
Das war bisher einer der abenteuerlichsten Urlaube für uns und Elli. Es ist nach jeder Abzweigung immer wieder spannend zu sehen, wie - und ob - die Strasse weitergeht. Wir haben sehr viele positive Eindrücke mitgenommen - und durften einige freundliche Menschen kennenlernen. <a href="https://albanventure.blogspot.com/" target="_blank">We call it Albanventure</a> - der Name unseres Blogs sagt eigentlich alles.
|
|
@ -0,0 +1,49 @@
|
||||||
|
---
|
||||||
|
author: "Katja Scheer-Schmidt, Jens Noack"
|
||||||
|
title: "3.Campster & Friends im Allgäu"
|
||||||
|
date: 2023-09-15
|
||||||
|
lastmod: 2023-09-19
|
||||||
|
description: "Zum dritten Mal sind wir mit dabei - das mega Meeting in Lechbruck ;-)"
|
||||||
|
tags: ["CampsterAndFriends","Lechbruck","Campstertreffen"]
|
||||||
|
thumbnail: /pics_blog/campsterandfriends2023/campsterandfriends2023_thumb.png
|
||||||
|
---
|
||||||
|
|
||||||
|
***... ein Termin, der jedes Jahr unumstößlich in unserem Kalender steht: Irgendwann im Spätsommer in Lechbruck...***
|
||||||
|
|
||||||
|
#### Die dritte Ausgabe ...
|
||||||
|
... des <a href="https://www.campsterandfriends.de/" target="_blank">"Campster and Friends Treffen"</a> in Lechbruck.** Und alle die schon mal da waren, können es kaum erwarten, ihr Dachzelt und sämtliches Zubehör endlich wieder auf der Zeltwiese 1 des <a href="https://www.via-claudia-camping.de/" target="_blank">"Via Claudia Camping"</a> aufzuschlagen.
|
||||||
|
|
||||||
|
{{<figure src="/pics_blog/campsterandfriends2023/campster_day.jpg" alt="Die Zeltwiese voller Friends">}}
|
||||||
|
|
||||||
|
#### Das ist die dritte Teilnahme ...
|
||||||
|
... für Elli und uns. Es ist jedes Mal schön, viele "alte" Bekannte zu treffen ... und da sind auch wieder viele viele neue Gesichter ins Allgäu gekommen.
|
||||||
|
|
||||||
|
30 - 60 - 90 ... das sind die ca. Zahlen der teilnehmenden Fahrzeuge der letzten 3 Jahre. Mega! Es ist jedes Mal beeindruckend, so viele Campster, Vanster, Crosscamp, Crosscamp Lite, Traveller, Friends ... an einem Ort - auf einer Party - zu sehen.
|
||||||
|
|
||||||
|
{{<figure src="/pics_blog/campsterandfriends2023/campster_vortrag_maker.jpeg" alt="Vortrag über die Makercommunity">}}
|
||||||
|
|
||||||
|
#### Logisch - und wie bisher immer ...
|
||||||
|
... war für alle ein Blick in die anderen Fahrzeuge möglich und erwünscht. Ein reger und instensiver Austausch über die neuesten (eigenen) Ein- und Ausbauten, Ideen, Wünsche, das coolste Zubehör - für Innen oder Aussen. Die letzten Reisen oder Ziele, die besten Plätze zum Stehen ... tausend Themen in Kontakt zu kommen. Einer der Gründe, weshalb wir immer wieder so gern hier dabei sind.
|
||||||
|
|
||||||
|
#### Neu in diesem Jahr ...
|
||||||
|
...in diesem Format auf dem "offiziellen" Programm: Vorträge & Workshops. Die Themen **"Elektrik im Vanster"** und **"MakerSpace Camp(st)er"* lockten viele ins "Vortragszelt".
|
||||||
|
Jede Menge Wissen und Infos zum mitnehmen und gleich vor Ort umzusetzen ;-) ...
|
||||||
|
|
||||||
|
{{<figure src="/pics_blog/campsterandfriends2023/campster_strom.jpg" alt="Stromzentrale Campstertreffen ">}}
|
||||||
|
|
||||||
|
*Die Versorgungszentrale "Strom" der Zeltwiese ... im "Notfall" konnte hier die Stromzufuhr für alle Campster zentral unterbrochen werden.*
|
||||||
|
|
||||||
|
#### Mega Danke! an Farah, Dennis und Tobi** ...
|
||||||
|
...für die Orga des Treffens und all dem Drumherum! ... und danke für die Personal Edition der "Special-Warning-Vest 'Prospect'" - ich mag euren Humor! und eure künstlerischen Fähigkeiten!
|
||||||
|
|
||||||
|
{{<figure src="/pics_blog/campsterandfriends2023/campster_bewerber.jpeg" alt="Warnweste Typ Prospect">}}
|
||||||
|
|
||||||
|
Bei der 4.Runde könnt ihr wieder auf uns zählen :-).
|
||||||
|
|
||||||
|
Katja & Jens.
|
||||||
|
|
||||||
|
#### Links aus dem Vortrag "MakerSpace Camp(st)er":
|
||||||
|
|
||||||
|
- [Alle mit Campster markierten 3D Modelle bei Thingiverse.com](https://www.thingiverse.com/search?q=campster&page=1&type=things&sort=relevant "Alle 'Campster' 3D Modelle bei Thingiverse.com")
|
||||||
|
- [Die Online-Karte mit den MakerSpaces im deutschsprachigen Raum](https://maker-faire.de/makerspaces/ "Makerspaces/Offene Werkstätten/Do it Yourself im deutschsprachigen Raum")
|
||||||
|
- [Das MakerLab in Murnau am Staffelsee (Bayern). Schau rein! Komm vorbei! Machs selber!](https://makerlab-murnau.de/home.html "MakerLab Murnau - ein Ort zum selber machen.")
|
10
content/blog/Schotterland.md
Normal file
10
content/blog/Schotterland.md
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
---
|
||||||
|
author: "Katja Scheer-Schmidt, Jens Noack"
|
||||||
|
title: "4 Wochen Schotterland"
|
||||||
|
date: 2022-05-15
|
||||||
|
lastmod: 2023-08-31
|
||||||
|
description: "Mit Elli 4 Wochen in Schottland unterwegs - egal ob Regen oder Sonne."
|
||||||
|
tags: ["Schotterland"]
|
||||||
|
thumbnail: /schotterland.jpg
|
||||||
|
---
|
||||||
|
Wir haben jeden Sonnentag und jeden noch so verregneten Ort - und wie wir diese wunderbare Welt erlebt haben - in unserem <a href="https://schotterland.blogspot.com/" target="_blank">Schotterland Blog</a> festgehalten. Du findest alle Details unter https://schotterland.blogspot.com/ .
|
4
content/blog/_index.md
Normal file
4
content/blog/_index.md
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
---
|
||||||
|
author: Katja Scheer-Schmidt, Jens Noack
|
||||||
|
title: Blogs
|
||||||
|
---
|
13
content/page/about.md
Normal file
13
content/page/about.md
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
---
|
||||||
|
author: Jens Noack
|
||||||
|
title: Be Ellive
|
||||||
|
date: 2023-08-31
|
||||||
|
description:
|
||||||
|
keywords: ["about-us", "about-elli", "contact"]
|
||||||
|
type: about
|
||||||
|
---
|
||||||
|
|
||||||
|
Elli. Alexander Wolkov - Zauberer der Smaragdenstadt ...
|
||||||
|
|
||||||
|
- Warum Elli?
|
||||||
|
- Warum diese Seite?
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -1,4 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Blog on Blist (mehrsprachig)</title><link>https://blist.vercel.app/de/blog/</link><description>Recent content in Blog on Blist (mehrsprachig)</description><generator>Hugo -- gohugo.io</generator><language>de</language><lastBuildDate>Thu, 15 Jul 2021 00:00:00 +0000</lastBuildDate><atom:link href="https://blist.vercel.app/de/blog/index.xml" rel="self" type="application/rss+xml"/><item><title>Emoji-Unterstützung</title><link>https://blist.vercel.app/de/blog/emoji-support/</link><pubDate>Thu, 15 Jul 2021 00:00:00 +0000</pubDate><guid>https://blist.vercel.app/de/blog/emoji-support/</guid><description><p>Emojis können in einem Hugo-Projekt auf verschiedene Weise aktiviert werden.</p></description></item><item><title>Markdown Syntax Guide</title><link>https://blist.vercel.app/de/blog/markdown-syntax/</link><pubDate>Wed, 14 Jul 2021 00:00:00 +0000</pubDate><guid>https://blist.vercel.app/de/blog/markdown-syntax/</guid><description><p>Dieser Artikel bietet ein Beispiel für die grundlegende Markdown-Syntax, die in Hugo-Inhaltsdateien verwendet werden kann, und zeigt auch, ob grundlegende HTML-Elemente mit CSS in einem Hugo-Theme dekoriert sind.</p></description></item><item><title>Platzhaltertext</title><link>https://blist.vercel.app/de/blog/placeholder-text/</link><pubDate>Tue, 13 Jul 2021 00:00:00 +0000</pubDate><guid>https://blist.vercel.app/de/blog/placeholder-text/</guid><description><p>Lorem est tota propiore conpellat pectoribus de pectora summo.</p></description></item><item><title>Reichhaltiger Inhalt</title><link>https://blist.vercel.app/de/blog/rich-content/</link><pubDate>Tue, 13 Jul 2021 00:00:00 +0000</pubDate><guid>https://blist.vercel.app/de/blog/rich-content/</guid><description><p>Hugo wird mit mehreren <a href="https://gohugo.io/content-management/shortcodes/#use-hugos-built-in-shortcodes" target="_blank" rel="noopener">Built-in Shortcodes</a>
|
|
||||||
für reichhaltige Inhalte geliefert, zusammen mit einer <a href="https://gohugo.io/about/hugo-and-gdpr/" target="_blank" rel="noopener">Privacy Config</a>
|
|
||||||
und einer Reihe einfacher Shortcodes, die statische und keine JS-Versionen verschiedener Social-Media-Einbettungen ermöglichen.</p>
|
|
||||||
<h2 id="heading"></h2></description></item></channel></rss>
|
|
File diff suppressed because one or more lines are too long
|
@ -1 +0,0 @@
|
||||||
<!doctype html><html lang=de><head><title>https://blist.vercel.app/de/blog/</title><link rel=canonical href=https://blist.vercel.app/de/blog/><meta name=robots content="noindex"><meta charset=utf-8><meta http-equiv=refresh content="0; url=https://blist.vercel.app/de/blog/"></head></html>
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -1 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Categories on Blist (mehrsprachig)</title><link>https://blist.vercel.app/de/categories/</link><description>Recent content in Categories on Blist (mehrsprachig)</description><generator>Hugo -- gohugo.io</generator><language>de</language><atom:link href="https://blist.vercel.app/de/categories/index.xml" rel="self" type="application/rss+xml"/></channel></rss>
|
|
|
@ -1 +0,0 @@
|
||||||
<!doctype html><html lang=de><head><title>https://blist.vercel.app/de/categories/</title><link rel=canonical href=https://blist.vercel.app/de/categories/><meta name=robots content="noindex"><meta charset=utf-8><meta http-equiv=refresh content="0; url=https://blist.vercel.app/de/categories/"></head></html>
|
|
File diff suppressed because one or more lines are too long
|
@ -1 +0,0 @@
|
||||||
[{"author":"Hugo Authors","categories":null,"contents":"\u003cp\u003eEmojis können in einem Hugo-Projekt auf verschiedene Weise aktiviert werden.\u003c/p\u003e","date":"2021-10-14T00:00:00Z","permalink":"https://blist.vercel.app/de/blog/emoji-support/","tags":["emoji"],"title":"Emoji-Unterstützung"},{"author":"Katheryn Fox","categories":null,"contents":"Hugo wurde in Go geschrieben und ist ein Open-Source-Generator für statische Sites, der unter der [Apache License 2.0.] (https://github.com/gohugoio/hugo/blob/master/LICENSE ) verfügbar ist. Hugo unterstützt TOML-, YAML- und JSON-Datendateitypen , Markdown- und HTML-Inhaltsdateien und verwendet Shortcodes, um Rich Content hinzuzufügen. Andere bemerkenswerte Funktionen sind Taxonomien, mehrsprachiger Modus, Bildverarbeitung, benutzerdefinierte Ausgabeformate, HTML/CSS/JS-Minifizierung und Unterstützung für Sass SCSS-Workflows.\nHugo nutzt eine Vielzahl von Open-Source-Projekten, darunter:\nhttps://github.com/yuin/goldmark https://github.com/alecthomas/chroma https://github.com/muesli/smartcrop https://github.com/spf13/cobra https://github.com/spf13/viper Hugo is ideal for blogs, corporate websites, creative portfolios, online magazines, single page applications or even a website with thousands of pages.","date":"2021-07-15T00:00:00Z","permalink":"https://blist.vercel.app/de/page/about/","tags":null,"title":"Über mich"},{"author":"Hugo Authors","categories":null,"contents":"\u003cp\u003eDieser Artikel bietet ein Beispiel für die grundlegende Markdown-Syntax, die in Hugo-Inhaltsdateien verwendet werden kann, und zeigt auch, ob grundlegende HTML-Elemente mit CSS in einem Hugo-Theme dekoriert sind.\u003c/p\u003e","date":"2021-07-14T00:00:00Z","permalink":"https://blist.vercel.app/de/blog/markdown-syntax/","tags":["markdown","css","html"],"title":"Markdown Syntax Guide"},{"author":"Hugo Authors","categories":null,"contents":"\u003cp\u003eLorem est tota propiore conpellat pectoribus de pectora summo.\u003c/p\u003e","date":"2021-07-13T00:00:00Z","permalink":"https://blist.vercel.app/de/blog/placeholder-text/","tags":["markdown","text"],"title":"Platzhaltertext"},{"author":"Hugo Authors","categories":null,"contents":"\u003cp\u003eHugo wird mit mehreren \u003ca href=\"https://gohugo.io/content-management/shortcodes/#use-hugos-built-in-shortcodes\" target=\"_blank\" rel=\"noopener\"\u003eBuilt-in Shortcodes\u003c/a\u003e\n für reichhaltige Inhalte geliefert, zusammen mit einer \u003ca href=\"https://gohugo.io/about/hugo-and-gdpr/\" target=\"_blank\" rel=\"noopener\"\u003ePrivacy Config\u003c/a\u003e\n und einer Reihe einfacher Shortcodes, die statische und keine JS-Versionen verschiedener Social-Media-Einbettungen ermöglichen.\u003c/p\u003e\n\u003ch2 id=\"heading\"\u003e\u003c/h2\u003e","date":"2021-07-13T00:00:00Z","permalink":"https://blist.vercel.app/de/blog/rich-content/","tags":["shortcodes","privacy"],"title":"Reichhaltiger Inhalt"}]
|
|
|
@ -1,6 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Blist (mehrsprachig)</title><link>https://blist.vercel.app/de/</link><description>Recent content on Blist (mehrsprachig)</description><generator>Hugo -- gohugo.io</generator><language>de</language><lastBuildDate>Thu, 15 Jul 2021 00:00:00 +0000</lastBuildDate><atom:link href="https://blist.vercel.app/de/index.xml" rel="self" type="application/rss+xml"/><item><title>Emoji-Unterstützung</title><link>https://blist.vercel.app/de/blog/emoji-support/</link><pubDate>Thu, 15 Jul 2021 00:00:00 +0000</pubDate><guid>https://blist.vercel.app/de/blog/emoji-support/</guid><description><p>Emojis können in einem Hugo-Projekt auf verschiedene Weise aktiviert werden.</p></description></item><item><title>Über mich</title><link>https://blist.vercel.app/de/page/about/</link><pubDate>Thu, 15 Jul 2021 00:00:00 +0000</pubDate><guid>https://blist.vercel.app/de/page/about/</guid><description>Hugo wurde in Go geschrieben und ist ein Open-Source-Generator für statische Sites, der unter der [Apache License 2.0.] (https://github.com/gohugoio/hugo/blob/master/LICENSE ) verfügbar ist. Hugo unterstützt TOML-, YAML- und JSON-Datendateitypen , Markdown- und HTML-Inhaltsdateien und verwendet Shortcodes, um Rich Content hinzuzufügen. Andere bemerkenswerte Funktionen sind Taxonomien, mehrsprachiger Modus, Bildverarbeitung, benutzerdefinierte Ausgabeformate, HTML/CSS/JS-Minifizierung und Unterstützung für Sass SCSS-Workflows.
|
|
||||||
Hugo nutzt eine Vielzahl von Open-Source-Projekten, darunter:
|
|
||||||
https://github.com/yuin/goldmark https://github.com/alecthomas/chroma https://github.com/muesli/smartcrop https://github.com/spf13/cobra https://github.com/spf13/viper Hugo is ideal for blogs, corporate websites, creative portfolios, online magazines, single page applications or even a website with thousands of pages.</description></item><item><title>Markdown Syntax Guide</title><link>https://blist.vercel.app/de/blog/markdown-syntax/</link><pubDate>Wed, 14 Jul 2021 00:00:00 +0000</pubDate><guid>https://blist.vercel.app/de/blog/markdown-syntax/</guid><description><p>Dieser Artikel bietet ein Beispiel für die grundlegende Markdown-Syntax, die in Hugo-Inhaltsdateien verwendet werden kann, und zeigt auch, ob grundlegende HTML-Elemente mit CSS in einem Hugo-Theme dekoriert sind.</p></description></item><item><title>Platzhaltertext</title><link>https://blist.vercel.app/de/blog/placeholder-text/</link><pubDate>Tue, 13 Jul 2021 00:00:00 +0000</pubDate><guid>https://blist.vercel.app/de/blog/placeholder-text/</guid><description><p>Lorem est tota propiore conpellat pectoribus de pectora summo.</p></description></item><item><title>Reichhaltiger Inhalt</title><link>https://blist.vercel.app/de/blog/rich-content/</link><pubDate>Tue, 13 Jul 2021 00:00:00 +0000</pubDate><guid>https://blist.vercel.app/de/blog/rich-content/</guid><description><p>Hugo wird mit mehreren <a href="https://gohugo.io/content-management/shortcodes/#use-hugos-built-in-shortcodes" target="_blank" rel="noopener">Built-in Shortcodes</a>
|
|
||||||
für reichhaltige Inhalte geliefert, zusammen mit einer <a href="https://gohugo.io/about/hugo-and-gdpr/" target="_blank" rel="noopener">Privacy Config</a>
|
|
||||||
und einer Reihe einfacher Shortcodes, die statische und keine JS-Versionen verschiedener Social-Media-Einbettungen ermöglichen.</p>
|
|
||||||
<h2 id="heading"></h2></description></item></channel></rss>
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -1,3 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Pages on Blist (mehrsprachig)</title><link>https://blist.vercel.app/de/page/</link><description>Recent content in Pages on Blist (mehrsprachig)</description><generator>Hugo -- gohugo.io</generator><language>de</language><lastBuildDate>Thu, 15 Jul 2021 00:00:00 +0000</lastBuildDate><atom:link href="https://blist.vercel.app/de/page/index.xml" rel="self" type="application/rss+xml"/><item><title>Über mich</title><link>https://blist.vercel.app/de/page/about/</link><pubDate>Thu, 15 Jul 2021 00:00:00 +0000</pubDate><guid>https://blist.vercel.app/de/page/about/</guid><description>Hugo wurde in Go geschrieben und ist ein Open-Source-Generator für statische Sites, der unter der [Apache License 2.0.] (https://github.com/gohugoio/hugo/blob/master/LICENSE ) verfügbar ist. Hugo unterstützt TOML-, YAML- und JSON-Datendateitypen , Markdown- und HTML-Inhaltsdateien und verwendet Shortcodes, um Rich Content hinzuzufügen. Andere bemerkenswerte Funktionen sind Taxonomien, mehrsprachiger Modus, Bildverarbeitung, benutzerdefinierte Ausgabeformate, HTML/CSS/JS-Minifizierung und Unterstützung für Sass SCSS-Workflows.
|
|
||||||
Hugo nutzt eine Vielzahl von Open-Source-Projekten, darunter:
|
|
||||||
https://github.com/yuin/goldmark https://github.com/alecthomas/chroma https://github.com/muesli/smartcrop https://github.com/spf13/cobra https://github.com/spf13/viper Hugo is ideal for blogs, corporate websites, creative portfolios, online magazines, single page applications or even a website with thousands of pages.</description></item></channel></rss>
|
|
|
@ -1 +0,0 @@
|
||||||
<!doctype html><html lang=de><head><title>https://blist.vercel.app/de/page/</title><link rel=canonical href=https://blist.vercel.app/de/page/><meta name=robots content="noindex"><meta charset=utf-8><meta http-equiv=refresh content="0; url=https://blist.vercel.app/de/page/"></head></html>
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -1 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>css on Blist (mehrsprachig)</title><link>https://blist.vercel.app/de/tags/css/</link><description>Recent content in css on Blist (mehrsprachig)</description><generator>Hugo -- gohugo.io</generator><language>de</language><lastBuildDate>Wed, 14 Jul 2021 00:00:00 +0000</lastBuildDate><atom:link href="https://blist.vercel.app/de/tags/css/index.xml" rel="self" type="application/rss+xml"/><item><title>Markdown Syntax Guide</title><link>https://blist.vercel.app/de/blog/markdown-syntax/</link><pubDate>Wed, 14 Jul 2021 00:00:00 +0000</pubDate><guid>https://blist.vercel.app/de/blog/markdown-syntax/</guid><description><p>Dieser Artikel bietet ein Beispiel für die grundlegende Markdown-Syntax, die in Hugo-Inhaltsdateien verwendet werden kann, und zeigt auch, ob grundlegende HTML-Elemente mit CSS in einem Hugo-Theme dekoriert sind.</p></description></item></channel></rss>
|
|
|
@ -1 +0,0 @@
|
||||||
<!doctype html><html lang=de><head><title>https://blist.vercel.app/de/tags/css/</title><link rel=canonical href=https://blist.vercel.app/de/tags/css/><meta name=robots content="noindex"><meta charset=utf-8><meta http-equiv=refresh content="0; url=https://blist.vercel.app/de/tags/css/"></head></html>
|
|
File diff suppressed because one or more lines are too long
|
@ -1 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>emoji on Blist (mehrsprachig)</title><link>https://blist.vercel.app/de/tags/emoji/</link><description>Recent content in emoji on Blist (mehrsprachig)</description><generator>Hugo -- gohugo.io</generator><language>de</language><lastBuildDate>Thu, 15 Jul 2021 00:00:00 +0000</lastBuildDate><atom:link href="https://blist.vercel.app/de/tags/emoji/index.xml" rel="self" type="application/rss+xml"/><item><title>Emoji-Unterstützung</title><link>https://blist.vercel.app/de/blog/emoji-support/</link><pubDate>Thu, 15 Jul 2021 00:00:00 +0000</pubDate><guid>https://blist.vercel.app/de/blog/emoji-support/</guid><description><p>Emojis können in einem Hugo-Projekt auf verschiedene Weise aktiviert werden.</p></description></item></channel></rss>
|
|
|
@ -1 +0,0 @@
|
||||||
<!doctype html><html lang=de><head><title>https://blist.vercel.app/de/tags/emoji/</title><link rel=canonical href=https://blist.vercel.app/de/tags/emoji/><meta name=robots content="noindex"><meta charset=utf-8><meta http-equiv=refresh content="0; url=https://blist.vercel.app/de/tags/emoji/"></head></html>
|
|
File diff suppressed because one or more lines are too long
|
@ -1 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>html on Blist (mehrsprachig)</title><link>https://blist.vercel.app/de/tags/html/</link><description>Recent content in html on Blist (mehrsprachig)</description><generator>Hugo -- gohugo.io</generator><language>de</language><lastBuildDate>Wed, 14 Jul 2021 00:00:00 +0000</lastBuildDate><atom:link href="https://blist.vercel.app/de/tags/html/index.xml" rel="self" type="application/rss+xml"/><item><title>Markdown Syntax Guide</title><link>https://blist.vercel.app/de/blog/markdown-syntax/</link><pubDate>Wed, 14 Jul 2021 00:00:00 +0000</pubDate><guid>https://blist.vercel.app/de/blog/markdown-syntax/</guid><description><p>Dieser Artikel bietet ein Beispiel für die grundlegende Markdown-Syntax, die in Hugo-Inhaltsdateien verwendet werden kann, und zeigt auch, ob grundlegende HTML-Elemente mit CSS in einem Hugo-Theme dekoriert sind.</p></description></item></channel></rss>
|
|
|
@ -1 +0,0 @@
|
||||||
<!doctype html><html lang=de><head><title>https://blist.vercel.app/de/tags/html/</title><link rel=canonical href=https://blist.vercel.app/de/tags/html/><meta name=robots content="noindex"><meta charset=utf-8><meta http-equiv=refresh content="0; url=https://blist.vercel.app/de/tags/html/"></head></html>
|
|
File diff suppressed because one or more lines are too long
|
@ -1 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Tags on Blist (mehrsprachig)</title><link>https://blist.vercel.app/de/tags/</link><description>Recent content in Tags on Blist (mehrsprachig)</description><generator>Hugo -- gohugo.io</generator><language>de</language><lastBuildDate>Thu, 15 Jul 2021 00:00:00 +0000</lastBuildDate><atom:link href="https://blist.vercel.app/de/tags/index.xml" rel="self" type="application/rss+xml"/><item><title>emoji</title><link>https://blist.vercel.app/de/tags/emoji/</link><pubDate>Thu, 15 Jul 2021 00:00:00 +0000</pubDate><guid>https://blist.vercel.app/de/tags/emoji/</guid><description/></item><item><title>css</title><link>https://blist.vercel.app/de/tags/css/</link><pubDate>Wed, 14 Jul 2021 00:00:00 +0000</pubDate><guid>https://blist.vercel.app/de/tags/css/</guid><description/></item><item><title>html</title><link>https://blist.vercel.app/de/tags/html/</link><pubDate>Wed, 14 Jul 2021 00:00:00 +0000</pubDate><guid>https://blist.vercel.app/de/tags/html/</guid><description/></item><item><title>markdown</title><link>https://blist.vercel.app/de/tags/markdown/</link><pubDate>Wed, 14 Jul 2021 00:00:00 +0000</pubDate><guid>https://blist.vercel.app/de/tags/markdown/</guid><description/></item><item><title>privacy</title><link>https://blist.vercel.app/de/tags/privacy/</link><pubDate>Tue, 13 Jul 2021 00:00:00 +0000</pubDate><guid>https://blist.vercel.app/de/tags/privacy/</guid><description/></item><item><title>shortcodes</title><link>https://blist.vercel.app/de/tags/shortcodes/</link><pubDate>Tue, 13 Jul 2021 00:00:00 +0000</pubDate><guid>https://blist.vercel.app/de/tags/shortcodes/</guid><description/></item><item><title>text</title><link>https://blist.vercel.app/de/tags/text/</link><pubDate>Tue, 13 Jul 2021 00:00:00 +0000</pubDate><guid>https://blist.vercel.app/de/tags/text/</guid><description/></item></channel></rss>
|
|
File diff suppressed because one or more lines are too long
|
@ -1 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>markdown on Blist (mehrsprachig)</title><link>https://blist.vercel.app/de/tags/markdown/</link><description>Recent content in markdown on Blist (mehrsprachig)</description><generator>Hugo -- gohugo.io</generator><language>de</language><lastBuildDate>Wed, 14 Jul 2021 00:00:00 +0000</lastBuildDate><atom:link href="https://blist.vercel.app/de/tags/markdown/index.xml" rel="self" type="application/rss+xml"/><item><title>Markdown Syntax Guide</title><link>https://blist.vercel.app/de/blog/markdown-syntax/</link><pubDate>Wed, 14 Jul 2021 00:00:00 +0000</pubDate><guid>https://blist.vercel.app/de/blog/markdown-syntax/</guid><description><p>Dieser Artikel bietet ein Beispiel für die grundlegende Markdown-Syntax, die in Hugo-Inhaltsdateien verwendet werden kann, und zeigt auch, ob grundlegende HTML-Elemente mit CSS in einem Hugo-Theme dekoriert sind.</p></description></item><item><title>Platzhaltertext</title><link>https://blist.vercel.app/de/blog/placeholder-text/</link><pubDate>Tue, 13 Jul 2021 00:00:00 +0000</pubDate><guid>https://blist.vercel.app/de/blog/placeholder-text/</guid><description><p>Lorem est tota propiore conpellat pectoribus de pectora summo.</p></description></item></channel></rss>
|
|
|
@ -1 +0,0 @@
|
||||||
<!doctype html><html lang=de><head><title>https://blist.vercel.app/de/tags/markdown/</title><link rel=canonical href=https://blist.vercel.app/de/tags/markdown/><meta name=robots content="noindex"><meta charset=utf-8><meta http-equiv=refresh content="0; url=https://blist.vercel.app/de/tags/markdown/"></head></html>
|
|
|
@ -1 +0,0 @@
|
||||||
<!doctype html><html lang=de><head><title>https://blist.vercel.app/de/tags/</title><link rel=canonical href=https://blist.vercel.app/de/tags/><meta name=robots content="noindex"><meta charset=utf-8><meta http-equiv=refresh content="0; url=https://blist.vercel.app/de/tags/"></head></html>
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -1,4 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>privacy on Blist (mehrsprachig)</title><link>https://blist.vercel.app/de/tags/privacy/</link><description>Recent content in privacy on Blist (mehrsprachig)</description><generator>Hugo -- gohugo.io</generator><language>de</language><lastBuildDate>Tue, 13 Jul 2021 00:00:00 +0000</lastBuildDate><atom:link href="https://blist.vercel.app/de/tags/privacy/index.xml" rel="self" type="application/rss+xml"/><item><title>Reichhaltiger Inhalt</title><link>https://blist.vercel.app/de/blog/rich-content/</link><pubDate>Tue, 13 Jul 2021 00:00:00 +0000</pubDate><guid>https://blist.vercel.app/de/blog/rich-content/</guid><description><p>Hugo wird mit mehreren <a href="https://gohugo.io/content-management/shortcodes/#use-hugos-built-in-shortcodes" target="_blank" rel="noopener">Built-in Shortcodes</a>
|
|
||||||
für reichhaltige Inhalte geliefert, zusammen mit einer <a href="https://gohugo.io/about/hugo-and-gdpr/" target="_blank" rel="noopener">Privacy Config</a>
|
|
||||||
und einer Reihe einfacher Shortcodes, die statische und keine JS-Versionen verschiedener Social-Media-Einbettungen ermöglichen.</p>
|
|
||||||
<h2 id="heading"></h2></description></item></channel></rss>
|
|
|
@ -1 +0,0 @@
|
||||||
<!doctype html><html lang=de><head><title>https://blist.vercel.app/de/tags/privacy/</title><link rel=canonical href=https://blist.vercel.app/de/tags/privacy/><meta name=robots content="noindex"><meta charset=utf-8><meta http-equiv=refresh content="0; url=https://blist.vercel.app/de/tags/privacy/"></head></html>
|
|
File diff suppressed because one or more lines are too long
|
@ -1,4 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>shortcodes on Blist (mehrsprachig)</title><link>https://blist.vercel.app/de/tags/shortcodes/</link><description>Recent content in shortcodes on Blist (mehrsprachig)</description><generator>Hugo -- gohugo.io</generator><language>de</language><lastBuildDate>Tue, 13 Jul 2021 00:00:00 +0000</lastBuildDate><atom:link href="https://blist.vercel.app/de/tags/shortcodes/index.xml" rel="self" type="application/rss+xml"/><item><title>Reichhaltiger Inhalt</title><link>https://blist.vercel.app/de/blog/rich-content/</link><pubDate>Tue, 13 Jul 2021 00:00:00 +0000</pubDate><guid>https://blist.vercel.app/de/blog/rich-content/</guid><description><p>Hugo wird mit mehreren <a href="https://gohugo.io/content-management/shortcodes/#use-hugos-built-in-shortcodes" target="_blank" rel="noopener">Built-in Shortcodes</a>
|
|
||||||
für reichhaltige Inhalte geliefert, zusammen mit einer <a href="https://gohugo.io/about/hugo-and-gdpr/" target="_blank" rel="noopener">Privacy Config</a>
|
|
||||||
und einer Reihe einfacher Shortcodes, die statische und keine JS-Versionen verschiedener Social-Media-Einbettungen ermöglichen.</p>
|
|
||||||
<h2 id="heading"></h2></description></item></channel></rss>
|
|
|
@ -1 +0,0 @@
|
||||||
<!doctype html><html lang=de><head><title>https://blist.vercel.app/de/tags/shortcodes/</title><link rel=canonical href=https://blist.vercel.app/de/tags/shortcodes/><meta name=robots content="noindex"><meta charset=utf-8><meta http-equiv=refresh content="0; url=https://blist.vercel.app/de/tags/shortcodes/"></head></html>
|
|
File diff suppressed because one or more lines are too long
|
@ -1 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>text on Blist (mehrsprachig)</title><link>https://blist.vercel.app/de/tags/text/</link><description>Recent content in text on Blist (mehrsprachig)</description><generator>Hugo -- gohugo.io</generator><language>de</language><lastBuildDate>Tue, 13 Jul 2021 00:00:00 +0000</lastBuildDate><atom:link href="https://blist.vercel.app/de/tags/text/index.xml" rel="self" type="application/rss+xml"/><item><title>Platzhaltertext</title><link>https://blist.vercel.app/de/blog/placeholder-text/</link><pubDate>Tue, 13 Jul 2021 00:00:00 +0000</pubDate><guid>https://blist.vercel.app/de/blog/placeholder-text/</guid><description><p>Lorem est tota propiore conpellat pectoribus de pectora summo.</p></description></item></channel></rss>
|
|
|
@ -1 +0,0 @@
|
||||||
<!doctype html><html lang=de><head><title>https://blist.vercel.app/de/tags/text/</title><link rel=canonical href=https://blist.vercel.app/de/tags/text/><meta name=robots content="noindex"><meta charset=utf-8><meta http-equiv=refresh content="0; url=https://blist.vercel.app/de/tags/text/"></head></html>
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -1 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Categories on Blist Multilingual Theme</title><link>https://blist.vercel.app/dy/categories/</link><description>Recent content in Categories on Blist Multilingual Theme</description><generator>Hugo -- gohugo.io</generator><language>dy</language><atom:link href="https://blist.vercel.app/dy/categories/index.xml" rel="self" type="application/rss+xml"/></channel></rss>
|
|
|
@ -1 +0,0 @@
|
||||||
<!doctype html><html lang=dy><head><title>https://blist.vercel.app/dy/categories/</title><link rel=canonical href=https://blist.vercel.app/dy/categories/><meta name=robots content="noindex"><meta charset=utf-8><meta http-equiv=refresh content="0; url=https://blist.vercel.app/dy/categories/"></head></html>
|
|
File diff suppressed because one or more lines are too long
|
@ -1 +0,0 @@
|
||||||
[]
|
|
|
@ -1 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Blist Multilingual Theme</title><link>https://blist.vercel.app/dy/</link><description>Recent content on Blist Multilingual Theme</description><generator>Hugo -- gohugo.io</generator><language>dy</language><atom:link href="https://blist.vercel.app/dy/index.xml" rel="self" type="application/rss+xml"/></channel></rss>
|
|
|
@ -1 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?><urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:xhtml="http://www.w3.org/1999/xhtml"><url><loc>https://blist.vercel.app/dy/</loc><xhtml:link rel="alternate" hreflang="en" href="https://blist.vercel.app/en/"/><xhtml:link rel="alternate" hreflang="fr" href="https://blist.vercel.app/fr/"/><xhtml:link rel="alternate" hreflang="de" href="https://blist.vercel.app/de/"/><xhtml:link rel="alternate" hreflang="dy" href="https://blist.vercel.app/dy/"/></url><url><loc>https://blist.vercel.app/dy/categories/</loc><xhtml:link rel="alternate" hreflang="en" href="https://blist.vercel.app/en/categories/"/><xhtml:link rel="alternate" hreflang="fr" href="https://blist.vercel.app/fr/categories/"/><xhtml:link rel="alternate" hreflang="de" href="https://blist.vercel.app/de/categories/"/><xhtml:link rel="alternate" hreflang="dy" href="https://blist.vercel.app/dy/categories/"/></url><url><loc>https://blist.vercel.app/dy/tags/</loc><xhtml:link rel="alternate" hreflang="en" href="https://blist.vercel.app/en/tags/"/><xhtml:link rel="alternate" hreflang="fr" href="https://blist.vercel.app/fr/tags/"/><xhtml:link rel="alternate" hreflang="de" href="https://blist.vercel.app/de/tags/"/><xhtml:link rel="alternate" hreflang="dy" href="https://blist.vercel.app/dy/tags/"/></url></urlset>
|
|
File diff suppressed because one or more lines are too long
|
@ -1 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Tags on Blist Multilingual Theme</title><link>https://blist.vercel.app/dy/tags/</link><description>Recent content in Tags on Blist Multilingual Theme</description><generator>Hugo -- gohugo.io</generator><language>dy</language><atom:link href="https://blist.vercel.app/dy/tags/index.xml" rel="self" type="application/rss+xml"/></channel></rss>
|
|
|
@ -1 +0,0 @@
|
||||||
<!doctype html><html lang=dy><head><title>https://blist.vercel.app/dy/tags/</title><link rel=canonical href=https://blist.vercel.app/dy/tags/><meta name=robots content="noindex"><meta charset=utf-8><meta http-equiv=refresh content="0; url=https://blist.vercel.app/dy/tags/"></head></html>
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -1,4 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Blog on Blist Multilingual Theme</title><link>https://blist.vercel.app/en/blog/</link><description>Recent content in Blog on Blist Multilingual Theme</description><generator>Hugo -- gohugo.io</generator><language>en</language><lastBuildDate>Thu, 15 Jul 2021 00:00:00 +0000</lastBuildDate><atom:link href="https://blist.vercel.app/en/blog/index.xml" rel="self" type="application/rss+xml"/><item><title>Emoji Support</title><link>https://blist.vercel.app/en/blog/emoji-support/</link><pubDate>Thu, 15 Jul 2021 00:00:00 +0000</pubDate><guid>https://blist.vercel.app/en/blog/emoji-support/</guid><description><p>Emoji can be enabled in a Hugo project in a number of ways.</p></description></item><item><title>Markdown Syntax Guide</title><link>https://blist.vercel.app/en/blog/markdown-syntax/</link><pubDate>Wed, 14 Jul 2021 00:00:00 +0000</pubDate><guid>https://blist.vercel.app/en/blog/markdown-syntax/</guid><description><p>This article offers a sample of basic Markdown syntax that can be used in Hugo content files, also it shows whether basic HTML elements are decorated with CSS in a Hugo theme.</p></description></item><item><title>Math Typesetting</title><link>https://blist.vercel.app/en/blog/math-typesetting/</link><pubDate>Wed, 14 Jul 2021 00:00:00 +0000</pubDate><guid>https://blist.vercel.app/en/blog/math-typesetting/</guid><description><p>Mathematical notation in a Hugo project can be enabled by using third party JavaScript libraries.</p></description></item><item><title>Placeholder Text</title><link>https://blist.vercel.app/en/blog/placeholder-text/</link><pubDate>Tue, 13 Jul 2021 00:00:00 +0000</pubDate><guid>https://blist.vercel.app/en/blog/placeholder-text/</guid><description><p>Lorem est tota propiore conpellat pectoribus de pectora summo.</p></description></item><item><title>Rich Content</title><link>https://blist.vercel.app/en/blog/rich-content/</link><pubDate>Tue, 13 Jul 2021 00:00:00 +0000</pubDate><guid>https://blist.vercel.app/en/blog/rich-content/</guid><description><p>Hugo ships with several <a href="https://gohugo.io/content-management/shortcodes/#use-hugos-built-in-shortcodes" target="_blank" rel="noopener">Built-in Shortcodes</a>
|
|
||||||
for rich content, along with a <a href="https://gohugo.io/about/hugo-and-gdpr/" target="_blank" rel="noopener">Privacy Config</a>
|
|
||||||
and a set of Simple Shortcodes that enable static and no-JS versions of various social media embeds.</p>
|
|
||||||
<h2 id="heading"></h2></description></item></channel></rss>
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -1 +0,0 @@
|
||||||
<!doctype html><html lang=en><head><title>https://blist.vercel.app/en/blog/</title><link rel=canonical href=https://blist.vercel.app/en/blog/><meta name=robots content="noindex"><meta charset=utf-8><meta http-equiv=refresh content="0; url=https://blist.vercel.app/en/blog/"></head></html>
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -1 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Categories on Blist Multilingual Theme</title><link>https://blist.vercel.app/en/categories/</link><description>Recent content in Categories on Blist Multilingual Theme</description><generator>Hugo -- gohugo.io</generator><language>en</language><atom:link href="https://blist.vercel.app/en/categories/index.xml" rel="self" type="application/rss+xml"/></channel></rss>
|
|
|
@ -1 +0,0 @@
|
||||||
<!doctype html><html lang=en><head><title>https://blist.vercel.app/en/categories/</title><link rel=canonical href=https://blist.vercel.app/en/categories/><meta name=robots content="noindex"><meta charset=utf-8><meta http-equiv=refresh content="0; url=https://blist.vercel.app/en/categories/"></head></html>
|
|
File diff suppressed because one or more lines are too long
|
@ -1 +0,0 @@
|
||||||
[{"author":"Katheryn Fox","categories":null,"contents":"Written in Go, Hugo is an open source static site generator available under the Apache Licence 2.0. Hugo supports TOML, YAML and JSON data file types, Markdown and HTML content files and uses shortcodes to add rich content. Other notable features are taxonomies, multilingual mode, image processing, custom output formats, HTML/CSS/JS minification and support for Sass SCSS workflows.\nHugo makes use of a variety of open source projects including:\nhttps://github.com/yuin/goldmark https://github.","date":"2021-07-15T00:00:00Z","permalink":"https://blist.vercel.app/en/page/about/","tags":null,"title":"About Me"},{"author":"Hugo Authors","categories":null,"contents":"\u003cp\u003eEmoji can be enabled in a Hugo project in a number of ways.\u003c/p\u003e","date":"2021-07-15T00:00:00Z","permalink":"https://blist.vercel.app/en/blog/emoji-support/","tags":["emoji"],"title":"Emoji Support"},{"author":"Hugo Authors","categories":null,"contents":"\u003cp\u003eThis article offers a sample of basic Markdown syntax that can be used in Hugo content files, also it shows whether basic HTML elements are decorated with CSS in a Hugo theme.\u003c/p\u003e","date":"2021-07-14T00:00:00Z","permalink":"https://blist.vercel.app/en/blog/markdown-syntax/","tags":["markdown","css","html"],"title":"Markdown Syntax Guide"},{"author":"Hugo Authors","categories":null,"contents":"\u003cp\u003eMathematical notation in a Hugo project can be enabled by using third party JavaScript libraries.\u003c/p\u003e","date":"2021-07-14T00:00:00Z","permalink":"https://blist.vercel.app/en/blog/math-typesetting/","tags":null,"title":"Math Typesetting"},{"author":"Hugo Authors","categories":null,"contents":"\u003cp\u003eLorem est tota propiore conpellat pectoribus de pectora summo.\u003c/p\u003e","date":"2021-07-13T00:00:00Z","permalink":"https://blist.vercel.app/en/blog/placeholder-text/","tags":["markdown","text"],"title":"Placeholder Text"},{"author":"Hugo Authors","categories":null,"contents":"\u003cp\u003eHugo ships with several \u003ca href=\"https://gohugo.io/content-management/shortcodes/#use-hugos-built-in-shortcodes\" target=\"_blank\" rel=\"noopener\"\u003eBuilt-in Shortcodes\u003c/a\u003e\n for rich content, along with a \u003ca href=\"https://gohugo.io/about/hugo-and-gdpr/\" target=\"_blank\" rel=\"noopener\"\u003ePrivacy Config\u003c/a\u003e\n and a set of Simple Shortcodes that enable static and no-JS versions of various social media embeds.\u003c/p\u003e\n\u003ch2 id=\"heading\"\u003e\u003c/h2\u003e","date":"2021-07-13T00:00:00Z","permalink":"https://blist.vercel.app/en/blog/rich-content/","tags":["shortcodes","privacy"],"title":"Rich Content"}]
|
|
|
@ -1,6 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Blist Multilingual Theme</title><link>https://blist.vercel.app/en/</link><description>Recent content on Blist Multilingual Theme</description><generator>Hugo -- gohugo.io</generator><language>en</language><lastBuildDate>Thu, 15 Jul 2021 00:00:00 +0000</lastBuildDate><atom:link href="https://blist.vercel.app/en/index.xml" rel="self" type="application/rss+xml"/><item><title>About Me</title><link>https://blist.vercel.app/en/page/about/</link><pubDate>Thu, 15 Jul 2021 00:00:00 +0000</pubDate><guid>https://blist.vercel.app/en/page/about/</guid><description>Written in Go, Hugo is an open source static site generator available under the Apache Licence 2.0. Hugo supports TOML, YAML and JSON data file types, Markdown and HTML content files and uses shortcodes to add rich content. Other notable features are taxonomies, multilingual mode, image processing, custom output formats, HTML/CSS/JS minification and support for Sass SCSS workflows.
|
|
||||||
Hugo makes use of a variety of open source projects including:
|
|
||||||
https://github.com/yuin/goldmark https://github.</description></item><item><title>Emoji Support</title><link>https://blist.vercel.app/en/blog/emoji-support/</link><pubDate>Thu, 15 Jul 2021 00:00:00 +0000</pubDate><guid>https://blist.vercel.app/en/blog/emoji-support/</guid><description><p>Emoji can be enabled in a Hugo project in a number of ways.</p></description></item><item><title>Markdown Syntax Guide</title><link>https://blist.vercel.app/en/blog/markdown-syntax/</link><pubDate>Wed, 14 Jul 2021 00:00:00 +0000</pubDate><guid>https://blist.vercel.app/en/blog/markdown-syntax/</guid><description><p>This article offers a sample of basic Markdown syntax that can be used in Hugo content files, also it shows whether basic HTML elements are decorated with CSS in a Hugo theme.</p></description></item><item><title>Math Typesetting</title><link>https://blist.vercel.app/en/blog/math-typesetting/</link><pubDate>Wed, 14 Jul 2021 00:00:00 +0000</pubDate><guid>https://blist.vercel.app/en/blog/math-typesetting/</guid><description><p>Mathematical notation in a Hugo project can be enabled by using third party JavaScript libraries.</p></description></item><item><title>Placeholder Text</title><link>https://blist.vercel.app/en/blog/placeholder-text/</link><pubDate>Tue, 13 Jul 2021 00:00:00 +0000</pubDate><guid>https://blist.vercel.app/en/blog/placeholder-text/</guid><description><p>Lorem est tota propiore conpellat pectoribus de pectora summo.</p></description></item><item><title>Rich Content</title><link>https://blist.vercel.app/en/blog/rich-content/</link><pubDate>Tue, 13 Jul 2021 00:00:00 +0000</pubDate><guid>https://blist.vercel.app/en/blog/rich-content/</guid><description><p>Hugo ships with several <a href="https://gohugo.io/content-management/shortcodes/#use-hugos-built-in-shortcodes" target="_blank" rel="noopener">Built-in Shortcodes</a>
|
|
||||||
for rich content, along with a <a href="https://gohugo.io/about/hugo-and-gdpr/" target="_blank" rel="noopener">Privacy Config</a>
|
|
||||||
and a set of Simple Shortcodes that enable static and no-JS versions of various social media embeds.</p>
|
|
||||||
<h2 id="heading"></h2></description></item></channel></rss>
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -1,3 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Pages on Blist Multilingual Theme</title><link>https://blist.vercel.app/en/page/</link><description>Recent content in Pages on Blist Multilingual Theme</description><generator>Hugo -- gohugo.io</generator><language>en</language><lastBuildDate>Thu, 15 Jul 2021 00:00:00 +0000</lastBuildDate><atom:link href="https://blist.vercel.app/en/page/index.xml" rel="self" type="application/rss+xml"/><item><title>About Me</title><link>https://blist.vercel.app/en/page/about/</link><pubDate>Thu, 15 Jul 2021 00:00:00 +0000</pubDate><guid>https://blist.vercel.app/en/page/about/</guid><description>Written in Go, Hugo is an open source static site generator available under the Apache Licence 2.0. Hugo supports TOML, YAML and JSON data file types, Markdown and HTML content files and uses shortcodes to add rich content. Other notable features are taxonomies, multilingual mode, image processing, custom output formats, HTML/CSS/JS minification and support for Sass SCSS workflows.
|
|
||||||
Hugo makes use of a variety of open source projects including:
|
|
||||||
https://github.com/yuin/goldmark https://github.</description></item></channel></rss>
|
|
|
@ -1 +0,0 @@
|
||||||
<!doctype html><html lang=en><head><title>https://blist.vercel.app/en/page/</title><link rel=canonical href=https://blist.vercel.app/en/page/><meta name=robots content="noindex"><meta charset=utf-8><meta http-equiv=refresh content="0; url=https://blist.vercel.app/en/page/"></head></html>
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -1 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>css on Blist Multilingual Theme</title><link>https://blist.vercel.app/en/tags/css/</link><description>Recent content in css on Blist Multilingual Theme</description><generator>Hugo -- gohugo.io</generator><language>en</language><lastBuildDate>Wed, 14 Jul 2021 00:00:00 +0000</lastBuildDate><atom:link href="https://blist.vercel.app/en/tags/css/index.xml" rel="self" type="application/rss+xml"/><item><title>Markdown Syntax Guide</title><link>https://blist.vercel.app/en/blog/markdown-syntax/</link><pubDate>Wed, 14 Jul 2021 00:00:00 +0000</pubDate><guid>https://blist.vercel.app/en/blog/markdown-syntax/</guid><description><p>This article offers a sample of basic Markdown syntax that can be used in Hugo content files, also it shows whether basic HTML elements are decorated with CSS in a Hugo theme.</p></description></item></channel></rss>
|
|
|
@ -1 +0,0 @@
|
||||||
<!doctype html><html lang=en><head><title>https://blist.vercel.app/en/tags/css/</title><link rel=canonical href=https://blist.vercel.app/en/tags/css/><meta name=robots content="noindex"><meta charset=utf-8><meta http-equiv=refresh content="0; url=https://blist.vercel.app/en/tags/css/"></head></html>
|
|
File diff suppressed because one or more lines are too long
|
@ -1 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>emoji on Blist Multilingual Theme</title><link>https://blist.vercel.app/en/tags/emoji/</link><description>Recent content in emoji on Blist Multilingual Theme</description><generator>Hugo -- gohugo.io</generator><language>en</language><lastBuildDate>Thu, 15 Jul 2021 00:00:00 +0000</lastBuildDate><atom:link href="https://blist.vercel.app/en/tags/emoji/index.xml" rel="self" type="application/rss+xml"/><item><title>Emoji Support</title><link>https://blist.vercel.app/en/blog/emoji-support/</link><pubDate>Thu, 15 Jul 2021 00:00:00 +0000</pubDate><guid>https://blist.vercel.app/en/blog/emoji-support/</guid><description><p>Emoji can be enabled in a Hugo project in a number of ways.</p></description></item></channel></rss>
|
|
|
@ -1 +0,0 @@
|
||||||
<!doctype html><html lang=en><head><title>https://blist.vercel.app/en/tags/emoji/</title><link rel=canonical href=https://blist.vercel.app/en/tags/emoji/><meta name=robots content="noindex"><meta charset=utf-8><meta http-equiv=refresh content="0; url=https://blist.vercel.app/en/tags/emoji/"></head></html>
|
|
File diff suppressed because one or more lines are too long
|
@ -1 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>html on Blist Multilingual Theme</title><link>https://blist.vercel.app/en/tags/html/</link><description>Recent content in html on Blist Multilingual Theme</description><generator>Hugo -- gohugo.io</generator><language>en</language><lastBuildDate>Wed, 14 Jul 2021 00:00:00 +0000</lastBuildDate><atom:link href="https://blist.vercel.app/en/tags/html/index.xml" rel="self" type="application/rss+xml"/><item><title>Markdown Syntax Guide</title><link>https://blist.vercel.app/en/blog/markdown-syntax/</link><pubDate>Wed, 14 Jul 2021 00:00:00 +0000</pubDate><guid>https://blist.vercel.app/en/blog/markdown-syntax/</guid><description><p>This article offers a sample of basic Markdown syntax that can be used in Hugo content files, also it shows whether basic HTML elements are decorated with CSS in a Hugo theme.</p></description></item></channel></rss>
|
|
|
@ -1 +0,0 @@
|
||||||
<!doctype html><html lang=en><head><title>https://blist.vercel.app/en/tags/html/</title><link rel=canonical href=https://blist.vercel.app/en/tags/html/><meta name=robots content="noindex"><meta charset=utf-8><meta http-equiv=refresh content="0; url=https://blist.vercel.app/en/tags/html/"></head></html>
|
|
File diff suppressed because one or more lines are too long
|
@ -1 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Tags on Blist Multilingual Theme</title><link>https://blist.vercel.app/en/tags/</link><description>Recent content in Tags on Blist Multilingual Theme</description><generator>Hugo -- gohugo.io</generator><language>en</language><lastBuildDate>Thu, 15 Jul 2021 00:00:00 +0000</lastBuildDate><atom:link href="https://blist.vercel.app/en/tags/index.xml" rel="self" type="application/rss+xml"/><item><title>emoji</title><link>https://blist.vercel.app/en/tags/emoji/</link><pubDate>Thu, 15 Jul 2021 00:00:00 +0000</pubDate><guid>https://blist.vercel.app/en/tags/emoji/</guid><description/></item><item><title>css</title><link>https://blist.vercel.app/en/tags/css/</link><pubDate>Wed, 14 Jul 2021 00:00:00 +0000</pubDate><guid>https://blist.vercel.app/en/tags/css/</guid><description/></item><item><title>html</title><link>https://blist.vercel.app/en/tags/html/</link><pubDate>Wed, 14 Jul 2021 00:00:00 +0000</pubDate><guid>https://blist.vercel.app/en/tags/html/</guid><description/></item><item><title>markdown</title><link>https://blist.vercel.app/en/tags/markdown/</link><pubDate>Wed, 14 Jul 2021 00:00:00 +0000</pubDate><guid>https://blist.vercel.app/en/tags/markdown/</guid><description/></item><item><title>privacy</title><link>https://blist.vercel.app/en/tags/privacy/</link><pubDate>Tue, 13 Jul 2021 00:00:00 +0000</pubDate><guid>https://blist.vercel.app/en/tags/privacy/</guid><description/></item><item><title>shortcodes</title><link>https://blist.vercel.app/en/tags/shortcodes/</link><pubDate>Tue, 13 Jul 2021 00:00:00 +0000</pubDate><guid>https://blist.vercel.app/en/tags/shortcodes/</guid><description/></item><item><title>text</title><link>https://blist.vercel.app/en/tags/text/</link><pubDate>Tue, 13 Jul 2021 00:00:00 +0000</pubDate><guid>https://blist.vercel.app/en/tags/text/</guid><description/></item></channel></rss>
|
|
File diff suppressed because one or more lines are too long
|
@ -1 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>markdown on Blist Multilingual Theme</title><link>https://blist.vercel.app/en/tags/markdown/</link><description>Recent content in markdown on Blist Multilingual Theme</description><generator>Hugo -- gohugo.io</generator><language>en</language><lastBuildDate>Wed, 14 Jul 2021 00:00:00 +0000</lastBuildDate><atom:link href="https://blist.vercel.app/en/tags/markdown/index.xml" rel="self" type="application/rss+xml"/><item><title>Markdown Syntax Guide</title><link>https://blist.vercel.app/en/blog/markdown-syntax/</link><pubDate>Wed, 14 Jul 2021 00:00:00 +0000</pubDate><guid>https://blist.vercel.app/en/blog/markdown-syntax/</guid><description><p>This article offers a sample of basic Markdown syntax that can be used in Hugo content files, also it shows whether basic HTML elements are decorated with CSS in a Hugo theme.</p></description></item><item><title>Placeholder Text</title><link>https://blist.vercel.app/en/blog/placeholder-text/</link><pubDate>Tue, 13 Jul 2021 00:00:00 +0000</pubDate><guid>https://blist.vercel.app/en/blog/placeholder-text/</guid><description><p>Lorem est tota propiore conpellat pectoribus de pectora summo.</p></description></item></channel></rss>
|
|
|
@ -1 +0,0 @@
|
||||||
<!doctype html><html lang=en><head><title>https://blist.vercel.app/en/tags/markdown/</title><link rel=canonical href=https://blist.vercel.app/en/tags/markdown/><meta name=robots content="noindex"><meta charset=utf-8><meta http-equiv=refresh content="0; url=https://blist.vercel.app/en/tags/markdown/"></head></html>
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue