mirror of
https://github.com/safing/web
synced 2025-09-04 12:09:03 +00:00
Differentiate between podcasts and posts
also sets up their permalink
This commit is contained in:
parent
6a2a81c04a
commit
53481e4712
2 changed files with 13 additions and 4 deletions
16
_config.yml
16
_config.yml
|
@ -31,15 +31,25 @@ contact_url: "/contact/"
|
||||||
whitepaper_url: "/files/whitepaper/"
|
whitepaper_url: "/files/whitepaper/"
|
||||||
cyberfreedom_url: https://twitter.com/davegson/status/1110216714871029761
|
cyberfreedom_url: https://twitter.com/davegson/status/1110216714871029761
|
||||||
|
|
||||||
|
collections:
|
||||||
|
podcasts:
|
||||||
|
output: true
|
||||||
|
|
||||||
defaults:
|
defaults:
|
||||||
-
|
- scope:
|
||||||
scope:
|
|
||||||
path: "" # an empty string here means all files in the project
|
path: "" # an empty string here means all files in the project
|
||||||
type: "posts" # previously `post` in Jekyll 2.2.
|
type: "posts" # previously `post` in Jekyll 2.2.
|
||||||
values:
|
values:
|
||||||
layout: "post"
|
layout: "post"
|
||||||
permalink: /:year/:month/:day/:title/
|
permalink: /blog/:year/:month/:day/:title/
|
||||||
type: "post"
|
type: "post"
|
||||||
|
- scope:
|
||||||
|
path: ""
|
||||||
|
type: "podcasts"
|
||||||
|
values:
|
||||||
|
layout: "podcast"
|
||||||
|
permalink: /podcast/:year/:month/:day/:title/
|
||||||
|
type: "podcast"
|
||||||
|
|
||||||
# Social icons and sharing options
|
# Social icons and sharing options
|
||||||
#
|
#
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
---
|
---
|
||||||
type: podcast
|
|
||||||
title: "#001 - How to fund a privacy oriented start up"
|
title: "#001 - How to fund a privacy oriented start up"
|
||||||
keywords: funding privacy startup
|
keywords: funding privacy startup
|
||||||
date: 2019-09-13
|
date: 2019-09-13
|
Loading…
Add table
Reference in a new issue