mirror of
https://github.com/safing/web
synced 2025-09-01 18:49:06 +00:00
Add category to every media type and derive default layout from it
This commit is contained in:
parent
c37de117a3
commit
81d1a6ed83
56 changed files with 70 additions and 3 deletions
18
_config.yml
18
_config.yml
|
@ -96,23 +96,35 @@ defaults:
|
|||
path: "" # an empty string here means all files in the project
|
||||
type: "posts"
|
||||
values:
|
||||
layout: "post"
|
||||
permalink: /blog/:year/:month/:day/:title/
|
||||
type: "post"
|
||||
- scope:
|
||||
path: ""
|
||||
type: "podcasts"
|
||||
values:
|
||||
layout: "podcast"
|
||||
permalink: /podcast/:year/:month/:day/:title/
|
||||
type: "podcast"
|
||||
- scope:
|
||||
path: ""
|
||||
type: "videos"
|
||||
values:
|
||||
layout: "video"
|
||||
permalink: /video/:year/:month/:day/:title/
|
||||
type: "video"
|
||||
- scope:
|
||||
path: ""
|
||||
category: "blog"
|
||||
values:
|
||||
layout: "blog"
|
||||
- scope:
|
||||
path: ""
|
||||
category: "podcast"
|
||||
values:
|
||||
layout: "podcast"
|
||||
- scope:
|
||||
path: ""
|
||||
category: "video"
|
||||
values:
|
||||
layout: "video"
|
||||
|
||||
##############################
|
||||
###### Podcast settings ######
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
---
|
||||
category: podcast # possible values: blog video podcast
|
||||
title: "#001 - How to fund a privacy oriented start up"
|
||||
keywords: funding privacy startup
|
||||
date: 2019-09-13
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
---
|
||||
category: podcast # possible values: blog video podcast
|
||||
title: "#002 - Decisions that shift a company"
|
||||
keywords: decisions privacy startup
|
||||
date: 2019-09-19
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
---
|
||||
category: podcast # possible values: blog video podcast
|
||||
title: "#003 - Privacy Journey: The Story of Raphty"
|
||||
keywords: privacy journey startup
|
||||
date: 2019-09-27
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
---
|
||||
category: podcast # possible values: blog video podcast
|
||||
title: "#004 - How to evaluate and trust a Business?"
|
||||
keywords: privacy business trust
|
||||
date: 2019-10-04
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
---
|
||||
category: podcast # possible values: blog video podcast
|
||||
title: "#005 - Becoming a Remote Company - I"
|
||||
keywords: remote privacy business
|
||||
date: 2019-10-12
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
---
|
||||
category: podcast # possible values: blog video podcast
|
||||
title: "#006 - Progress Update I - Privacy Network"
|
||||
keywords: privacy business progress
|
||||
date: 2019-10-18
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
---
|
||||
category: podcast # possible values: blog video podcast
|
||||
title: "#007 - Progress Update II - Company Culture"
|
||||
keywords: privacy business culture
|
||||
date: 2019-10-25
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
---
|
||||
category: podcast # possible values: blog video podcast
|
||||
title: "#008 - The Golang Meetup and the yellow T-Shirt"
|
||||
keywords: privacy business golang
|
||||
date: 2019-11-01
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
---
|
||||
category: podcast # possible values: blog video podcast
|
||||
# ⚠️ ALWAYS follow this format: "#001 - Some sweet title"
|
||||
# when displaying only the episode number or the title this has to be constant
|
||||
# -> view cast.html
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
---
|
||||
category: podcast # possible values: blog video podcast
|
||||
# ⚠️ ALWAYS follow this format: "#001 - Some sweet title"
|
||||
# when displaying only the episode number or the title this has to be constant
|
||||
# -> view cast.html
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
---
|
||||
category: podcast # possible values: blog video podcast
|
||||
# ⚠️ ALWAYS follow this format: "#001 - Some sweet title"
|
||||
# when displaying only the episode number or the title this has to be constant
|
||||
# -> view cast.html
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
---
|
||||
category: podcast # possible values: blog video podcast
|
||||
# ⚠️ ALWAYS follow this format: "#001 - Some sweet title"
|
||||
# when displaying only the episode number or the title this has to be constant
|
||||
# -> view cast.html
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
---
|
||||
category: podcast # possible values: blog video podcast
|
||||
# ⚠️ ALWAYS follow this format: "#001 - Some sweet title"
|
||||
# when displaying only the episode number or the title this has to be constant
|
||||
# -> view cast.html
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
---
|
||||
category: podcast # possible values: blog video podcast
|
||||
# ⚠️ ALWAYS follow this format: "#001 - Some sweet title"
|
||||
# when displaying only the episode number or the title this has to be constant
|
||||
# -> view cast.html
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
---
|
||||
category: podcast # possible values: blog video podcast
|
||||
# ⚠️ ALWAYS follow this format: "#001 - Some sweet title"
|
||||
# when displaying only the episode number or the title this has to be constant
|
||||
# -> view cast.html
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
---
|
||||
category: podcast # possible values: blog video podcast
|
||||
# ⚠️ ALWAYS follow this format: "#001 - Some sweet title"
|
||||
# when displaying only the episode number or the title this has to be constant
|
||||
# -> view cast.html
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
---
|
||||
category: podcast # possible values: blog video podcast
|
||||
# ⚠️ ALWAYS follow this format: "#001 - Some sweet title"
|
||||
# when displaying only the episode number or the title this has to be constant
|
||||
# -> view cast.html
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
---
|
||||
category: podcast # possible values: blog video podcast
|
||||
# ⚠️ ALWAYS follow this format: "#001 - Some sweet title"
|
||||
# when displaying only the episode number or the title this has to be constant
|
||||
# -> view cast.html
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
---
|
||||
category: podcast # possible values: blog video podcast
|
||||
# ⚠️ ALWAYS follow this format: "#001 - Some sweet title"
|
||||
# when displaying only the episode number or the title this has to be constant
|
||||
# -> view cast.html
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
---
|
||||
category: podcast # possible values: blog video podcast
|
||||
# ⚠️ ALWAYS follow this format: "#001 - Some sweet title"
|
||||
# when displaying only the episode number or the title this has to be constant
|
||||
# -> view cast.html
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
---
|
||||
category: podcast # possible values: blog video podcast
|
||||
# ⚠️ ALWAYS follow this format: "#001 - Some sweet title"
|
||||
# when displaying only the episode number or the title this has to be constant
|
||||
# -> view cast.html
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
---
|
||||
category: podcast # possible values: blog video podcast
|
||||
# ⚠️ ALWAYS follow this format: "#001 - Some sweet title"
|
||||
# when displaying only the episode number or the title this has to be constant
|
||||
# -> view cast.html
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
---
|
||||
category: podcast # possible values: blog video podcast
|
||||
# ⚠️ ALWAYS follow this format: "#001 - Some sweet title"
|
||||
# when displaying only the episode number or the title this has to be constant
|
||||
# -> view cast.html
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
---
|
||||
category: podcast # possible values: blog video podcast
|
||||
# ⚠️ ALWAYS follow this format: "#001 - Some sweet title"
|
||||
# when displaying only the episode number or the title this has to be constant
|
||||
# -> view cast.html
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
---
|
||||
category: podcast # possible values: blog video podcast
|
||||
# ⚠️ ALWAYS follow this format: "#001 - Some sweet title"
|
||||
# when displaying only the episode number or the title this has to be constant
|
||||
# -> view cast.html
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
---
|
||||
category: podcast # possible values: blog video podcast
|
||||
# ⚠️ ALWAYS follow this format: "#001 - Some sweet title"
|
||||
# when displaying only the episode number or the title this has to be constant
|
||||
# -> view cast.html
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
---
|
||||
category: podcast # possible values: blog video podcast
|
||||
# ⚠️ ALWAYS follow this format: "#001 - Some sweet title"
|
||||
# when displaying only the episode number or the title this has to be constant
|
||||
# -> view cast.html
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
---
|
||||
category: podcast # possible values: blog video podcast
|
||||
# ⚠️ ALWAYS follow this format: "#001 - Some sweet title"
|
||||
# when displaying only the episode number or the title this has to be constant
|
||||
# -> view cast.html
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
---
|
||||
category: blog # possible values: blog video podcast
|
||||
title: Hiring a Designer from the Privacy Community
|
||||
date: 2019-11-29
|
||||
author: David
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
---
|
||||
category: blog # possible values: blog video podcast
|
||||
title: The next 5 Steps for Safing
|
||||
date: 2019-12-06
|
||||
author: David
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
---
|
||||
category: blog # possible values: blog video podcast
|
||||
title: Announcing the PrivacyTools Sponsorship
|
||||
date: 2019-12-20
|
||||
author: David
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
---
|
||||
category: blog # possible values: blog video podcast
|
||||
title: How the SPN compares to Tor
|
||||
date: 2020-01-22
|
||||
author: David
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
---
|
||||
category: blog # possible values: blog video podcast
|
||||
title: How the SPN Compares to VPNs
|
||||
date: 2020-01-22
|
||||
author: David
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
---
|
||||
category: blog # possible values: blog video podcast
|
||||
title: The Two Steps it Takes
|
||||
date: 2020-02-04
|
||||
author: David
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
---
|
||||
category: blog # possible values: blog video podcast
|
||||
# ⚠️ ALWAYS follow this format: "#001 - Some sweet title"
|
||||
# this has to be consistent for displaying only the episode number or only the title
|
||||
title: "#000 - Progress Update June"
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
---
|
||||
category: blog # possible values: blog video podcast
|
||||
title: "How Safing Selects its Default DNS Providers"
|
||||
date: 2020-07-07
|
||||
author: daniel
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
---
|
||||
category: blog # possible values: blog video podcast
|
||||
title: "We Are Updating Portmaster's Default DNS Servers"
|
||||
date: 2020-07-07
|
||||
author: daniel
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
---
|
||||
category: blog # possible values: blog video podcast
|
||||
# ⚠️ ALWAYS follow this format: "#001 - Some sweet title"
|
||||
# this has to be consistent for displaying only the episode number or only the title
|
||||
title: "#001 - Progress Update July"
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
---
|
||||
category: blog # possible values: blog video podcast
|
||||
# ⚠️ ALWAYS follow this format: "#001 - Some sweet title"
|
||||
# this has to be consistent for displaying only the episode number or only the title
|
||||
title: "#002 - Progress Update August"
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
---
|
||||
category: blog # possible values: blog video podcast
|
||||
title: AMA - Ask Us Anything
|
||||
date: 2020-09-02
|
||||
author: Raphael
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
---
|
||||
category: blog # possible values: blog video podcast
|
||||
# ⚠️ ALWAYS follow this format: "#001 - Some sweet title"
|
||||
# this has to be consistent for displaying only the episode number or only the title
|
||||
title: "#003 - Progress Update September"
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
---
|
||||
category: blog # possible values: blog video podcast
|
||||
# ⚠️ ALWAYS follow this format: "#001 - Some sweet title"
|
||||
# this has to be consistent for displaying only the episode number or only the title
|
||||
title: "#004 - Progress Update October"
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
---
|
||||
category: blog # possible values: blog video podcast
|
||||
# ⚠️ ALWAYS follow this format: "#001 - Some sweet title"
|
||||
# this has to be consistent for displaying only the episode number or only the title
|
||||
title: "#005 - Progress Update November"
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
---
|
||||
category: blog # possible values: blog video podcast
|
||||
# ⚠️ ALWAYS follow this format: "#001 - Some sweet title"
|
||||
# this has to be consistent for displaying only the episode number or only the title
|
||||
title: "#006 - Progress Update December"
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
---
|
||||
category: blog # possible values: blog video podcast
|
||||
# ⚠️ ALWAYS follow this format: "#001 - Some sweet title"
|
||||
# this has to be consistent for displaying only the episode number or only the title
|
||||
title: "#007 - Progress Update January"
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
---
|
||||
category: blog # possible values: blog video podcast
|
||||
# ⚠️ ALWAYS follow this format: "#001 - Some sweet title"
|
||||
# this has to be consistent for displaying only the episode number or only the title
|
||||
title: "#008 - Progress Update February"
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
---
|
||||
category: blog # possible values: blog video podcast
|
||||
title: "Attributing DNS Requests on Windows"
|
||||
date: 2021-03-23
|
||||
author: daniel
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
---
|
||||
category: blog # possible values: blog video podcast
|
||||
title: "Broad SPN Access Postponed to Q3 - Here Is Why"
|
||||
date: 2021-03-24
|
||||
author: david
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
---
|
||||
category: video # possible values: blog video podcast
|
||||
# ⚠️ ALWAYS follow this format: "#001 - Some sweet title"
|
||||
# this has to be consistent for displaying only the episode number or only the title
|
||||
title: "#001 - An Update from Home"
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
---
|
||||
category: video # possible values: blog video podcast
|
||||
# ⚠️ ALWAYS follow this format: "#001 - Some sweet title"
|
||||
# this has to be consistent for displaying only the episode number or only the title
|
||||
title: "#002 - The Portmaster is Almost Ready"
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
---
|
||||
category: video # possible values: blog video podcast
|
||||
# ⚠️ ALWAYS follow this format: "#001 - Some sweet title"
|
||||
# this has to be consistent for displaying only the episode number or only the title
|
||||
title: "#003 - The Portmaster is Out in Pre-Alpha!"
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
---
|
||||
category: video # possible values: blog video podcast
|
||||
# ⚠️ ALWAYS follow this format: "#001 - Some sweet title"
|
||||
# this has to be consistent for displaying only the episode number or only the title
|
||||
title: "#004 - The Account Server is up and running"
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
---
|
||||
category: video # possible values: blog video podcast
|
||||
# ⚠️ ALWAYS follow this format: "#001 - Some sweet title"
|
||||
# this has to be consistent for displaying only the episode number or only the title
|
||||
title: "#005 - A Fresh New Look"
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
---
|
||||
category: video # possible values: blog video podcast
|
||||
# ⚠️ ALWAYS follow this format: "#001 - Some sweet title"
|
||||
# this has to be consistent for displaying only the episode number or only the title
|
||||
title: "#006 - Default DNS Changes & NO MORE Deadlines"
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
---
|
||||
category: video # possible values: blog video podcast
|
||||
# ⚠️ ALWAYS follow this format: "#001 - Some sweet title"
|
||||
# this has to be consistent for displaying only the episode number or only the title
|
||||
title: "#007 - SPN And \"Next Page\" Roll Out"
|
||||
|
|
Loading…
Add table
Reference in a new issue