forked from PandaSekh/Jekyll-Podcaster
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
18 changed files
with
183 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
<footer> | ||
<p> | ||
Copyright <a href="https://alessiofranceschi.me/">Alessio Franceschi</a>. Tutti i diritti riservati. | ||
</p> | ||
</footer> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
--- | ||
title: Wrap-Up Settembre 2019 - Arte della Lettura Podcast EXTRA | ||
layout: post | ||
categories: [Wrap-Up] | ||
type: extra | ||
description: 'Questo mese ho letto ben 4 libri: Starship Troopers, Strangers in Paradise 1, Fate il vostro gioco e Anne di Tetti Verdi. Ho apprezzato due libri e ne ho odiati due; come disse una volta un vecchio saggio: "Perfettamente bilanciato, come tutto dovrebbe essere".' | ||
filename: extra_wu_sett | ||
length: "12:18" | ||
videoid: dmrn9hoqTiY | ||
--- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
--- | ||
title: Wrap-Up Agosto 2019 - Arte della Lettura Podcast EXTRA | ||
layout: post | ||
categories: [Wrap-Up] | ||
type: extra | ||
description: Riassuntone dei libri letti e in lettura nel mese di Agosto 2019. Ne avete letto qualcuno anche voi, cosa ne pensate? | ||
filename: extra_wu_agosto | ||
length: "14:04" | ||
videoid: ZfKHL4g2tDw | ||
--- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
.container{ | ||
.content{ | ||
.archive-group, .episodes{ | ||
h2{ | ||
font-family: 'Karla', sans-serif; | ||
font-size: 2rem; | ||
text-align: center; | ||
margin-top: 20px; | ||
} | ||
ul{ | ||
list-style: none; | ||
li{ | ||
line-height: 3rem; | ||
text-align: center; | ||
a{ | ||
text-decoration: none; | ||
font-size: 1.5rem; | ||
display: inline-block; | ||
font-style: italic; | ||
border-bottom: 1px solid $base-color; | ||
line-height: 0.9; | ||
transition: background-color 0.1s cubic-bezier(.33,.66,.66,1); | ||
color: black; | ||
} | ||
a:hover{ | ||
background-color: rgba(1,160,228,0.3); | ||
border-bottom: none; | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
File renamed without changes.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
--- | ||
--- | ||
|
||
@import "base", "background", "header", "sidebar", "home", "post", "player"; | ||
@import "base", "background", "header", "sidebar", "home", "post", "archive", "player"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
--- | ||
layout: default | ||
permalink: /cat/ | ||
title: Categorie | ||
--- | ||
{% assign sorted_categories = site.categories | sort %} | ||
{% for category in sorted_categories %} | ||
<div class="archive-group"> | ||
{% capture category_name %}{{ category | first }}{% endcapture %} | ||
<div id="#{{ category_name | slugize }}"> | ||
<h2>{{ category_name }}</h2> | ||
|
||
<ul> | ||
{% for post in site.categories[category_name] %} | ||
<li><a class="archive-link" href="{{ site.baseurl }}{{ post.url }}">{{post.title}}</a></li> | ||
{% endfor %} | ||
</ul> | ||
</div> | ||
</div> | ||
{% endfor %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters