Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
PandaSekh committed Jun 3, 2020
1 parent f5cf19e commit f9fc870
Show file tree
Hide file tree
Showing 15 changed files with 26 additions and 26 deletions.
2 changes: 1 addition & 1 deletion _includes/cover.html
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<img src="{{"assets/img/Podcast_Cover_Small.jpg" | relative_url}}" alt="Podcast Cover">
<img src="{{"assets/img/Podcast_Cover_Small.jpg" | absolute_url}}" alt="Podcast Cover">
8 changes: 4 additions & 4 deletions _includes/head.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,16 +15,16 @@
{% else %}{{ site.description }}
{% endif %}">

<link rel="icon" href="{{"/favicon.ico" | relative_url }}" type="image/x-icon">
<link rel="shortcut icon" href="{{"/favicon.ico" | relative_url }}" type="image/x-icon">
<link rel="icon" href="{{"/favicon.ico" | absolute_url }}" type="image/x-icon">
<link rel="shortcut icon" href="{{"/favicon.ico" | absolute_url }}" type="image/x-icon">

<link rel="stylesheet" href="https://cdn.plyr.io/3.6.2/plyr.css" />

<link href="https://fonts.googleapis.com/css2?family=Karla:wght@400;700&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Oleo+Script&display=swap" rel="stylesheet">

<link rel="stylesheet" href="{{"/assets/css/main.css" | relative_url }}">
<link rel="stylesheet" href="{{ "/assets/css/mobile.css" | relative_url }}">
<link rel="stylesheet" href="{{"/assets/css/main.css" | absolute_url }}">
<link rel="stylesheet" href="{{ "/assets/css/mobile.css" | absolute_url }}">

<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.13.0/css/all.min.css">

Expand Down
4 changes: 2 additions & 2 deletions _includes/header.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ <h1><a href="{{site.url}}">{{site.title}}</a></h1>
<div id = "desktop-nav">
<ul id = "desktop-menu">
{% for item in site.data.settings.pages %}
<li><a href="{{ item.url | relative_url}}"> {{ item.name }}</a></li>
<li><a href="{{ item.url | absolute_url}}"> {{ item.name }}</a></li>
{% endfor %}
</ul>
</div>
Expand All @@ -21,7 +21,7 @@ <h1><a href="{{site.url}}">{{site.title}}</a></h1>

<ul id = "menu">
{% for item in site.data.settings.pages %}
<li><a href="{{ item.url | relative_url}}"> {{ item.name }}</a></li>
<li><a href="{{ item.url | absolute_url}}"> {{ item.name }}</a></li>
{% endfor %}
</ul>
</div>
Expand Down
2 changes: 1 addition & 1 deletion _includes/player.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<div class = "player-container">
<audio class="player" disableContextMenu data-plyr-config='{ "title": "{{include.title}}"}'>
<source src="/assets/audio/{{include.filename}}.mp3" type="audio/mp3" />
<source src="{{ include.file }}" type="audio/mp3" />
</audio>
</div>
4 changes: 2 additions & 2 deletions _includes/sidebar.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<img src="assets/img/Podcast_Cover_Small.jpg" alt="Podcast cover">
<img src="{{"assets/img/Podcast_Cover_500.jpg" | absolute_url}}" alt="Podcast Cover">

<div id = "info">
<h3>{{site.title}}</h3>
Expand All @@ -19,7 +19,7 @@ <h3>Dove Ascoltare</h3>
<div id = "lista-siti">
<ul id = "siti">
{% for item in site.data.settings.siti-podcast %}
<li><a href="{{ item.url | relative_url}}"> {{ item.name }}</a></li>
<li><a href="{{ item.url | absolute_url}}"> {{ item.name }}</a></li>
{% endfor %}
</ul>
</div>
Expand Down
8 changes: 4 additions & 4 deletions _layouts/home.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@
{% if post.cover %}
<img src="{{post.cover}}" alt="Podcast Cover">
{% else %}
<img src="{{ "/assets/img/Podcast_Cover_Small.jpg" | relative_url}}" alt="Podcast Cover">
<img src="{{ "/assets/img/Podcast_Cover_Small.jpg" | absolute_url}}" alt="Podcast Cover">
{% endif %}
</div>

<div class = title>
<h2 id = "post-title"><a href="{{ post.url | relative_url }}">{{ post.title }}</a></h2>
<h2 id = "post-title"><a href="{{ post.url | absolute_url }}">{{ post.title }}</a></h2>

<div class = "info">
<span>
Expand All @@ -43,7 +43,7 @@ <h2 id = "post-title"><a href="{{ post.url | relative_url }}">{{ post.title }}<
{% else %}
{{ post.content | strip_html | truncatewords:100 }}
{% endif %}
<span class = "continue-reading"><a href="{{ post.url | relative_url }}">Continua</a></span>
<span class = "continue-reading"><a href="{{ post.url | absolute_url }}">Continua</a></span>
</p>
</div>

Expand All @@ -54,7 +54,7 @@ <h2 id = "post-title"><a href="{{ post.url | relative_url }}">{{ post.title }}<
{% else %}
{{ post.content | strip_html | truncatewords:30 }}
{% endif %}
<span class = "continue-reading"><a href="{{ post.url | relative_url }}">Continua</a></span>
<span class = "continue-reading"><a href="{{ post.url | absolute_url }}">Continua</a></span>
</p>
</div>

Expand Down
10 changes: 5 additions & 5 deletions _layouts/post.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
{% assign categories = page.categories %}
{% for category in categories %}
<a href="{% capture url %}/cat/#{{ category | slugify }}{% endcapture %}
{{ url | relative_url }}">{{category}}</a>
{{ url | absolute_url }}">{{category}}</a>
{% unless forloop.last %}&nbsp;{% endunless %}
{% endfor %}
</div>
Expand All @@ -16,19 +16,19 @@ <h2>{{page.title}}</h2>
{% if post.cover %}
<img src="{{post.cover}}" alt="Podcast Cover">
{% else %}
<img src="{{ "/assets/img/Podcast_Cover_Small.jpg" | relative_url}}" alt="Podcast Cover">
<img src="{{ "/assets/img/Podcast_Cover_500.jpg" | absolute_url}}" alt="Podcast Cover">
{% endif %}

<p>{{page.description}}</p>

{% capture filename %}
{{- page.filename -}}
{% capture file %}
{{- page.file -}}
{% endcapture %}
{% capture title %}
{{- page.title -}}
{% endcapture %}

{% include player.html filename=filename title=page.title %}
{% include player.html file = file title = title %}

{% include video.html videoid = page.videoid %}

Expand Down
2 changes: 1 addition & 1 deletion _posts/2019-07-20-introduzione.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ categories: [Generico]
keywords: [introduzione]
description: Una breve introduzione per spiegare quello che sarà Arte della Lettura Podcast.
summary: Una breve introduzione per spiegare quello che sarà Arte della Lettura Podcast.
file: ep0_intro
file: https://adlpodcast.s3.eu-west-3.amazonaws.com/ep0_intro.mp3
duration: "1284" #in seconds
length: "21:24"
videoid: eZzKgW8KBME
Expand Down
2 changes: 1 addition & 1 deletion _posts/2019-08-05-wrap-up-settembre.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ 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_settembre
file: https://adlpodcast.s3.eu-west-3.amazonaws.com/extra_wu_settembre.mp3
length: "12:18"
videoid: dmrn9hoqTiY
---
2 changes: 1 addition & 1 deletion _posts/2019-09-14-parliamo-del-salone-del-libro.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: Parliamo del Salone del Libro di Torino 2019 - Arte della Lettura Podcast
layout: post
categories: [Fiera, Wrap-Up]
description: In questo episodio vi racconto la mia esperienza al Salone del Libro di Torino 2019, primo anno in cui partecipo a questa fiera.
filename: ep1_salone
file: https://adlpodcast.s3.eu-west-3.amazonaws.com/ep1_salone.mp3
length: "32:51"
videoid: 3jZ5WCYmnHY
type: main
Expand Down
2 changes: 1 addition & 1 deletion _posts/2019-09-31-wrap-up-agosto-2019 .md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ 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
file: https://adlpodcast.s3.eu-west-3.amazonaws.com/extra_wu_agosto.mp3
length: "14:04"
videoid: ZfKHL4g2tDw
---
2 changes: 1 addition & 1 deletion _posts/2019-11-03-wrap-up-ottobre-2019.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ layout: post
categories: [Wrap-Up]
type: extra
description: Wrap-Up dei libri letti nel mese di Ottobre 2019. È stato un mese ricco, con libri tra cui Ruin and Rising di Leigh Bardugo, Niente canzoni d'amore di Charles Bukowski, La strada di Corman McCarthy e altri.
filename: extra_wu_ottobre
file: https://adlpodcast.s3.eu-west-3.amazonaws.com/extra_wu_ottobre.mp3
length: "52:14"
videoid: Y6X3Yz_7CMw
---
Expand Down
2 changes: 1 addition & 1 deletion _posts/2019-11-17-parliamo-di-terzani.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: Parliamo di Tiziano Terzani - Arte della Lettura Podcast
layout: post
categories: [Parliamo di, Intervista]
description: "In questo episodio del Podcast parliamo di Tiziano Terzani in compagnia del primo ospite, mio padre!"
filename: ep5_terzani
file: https://adlpodcast.s3.eu-west-3.amazonaws.com/terzani.mp3
length: "52:14"
videoid: YD5vtDrjs0Q
type: main
Expand Down
2 changes: 1 addition & 1 deletion _posts/2019-12-28-parliamo-del-lucca-comics-2019.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: Parliamo del Lucca Comics & Games 2019 - Arte della Lettura Podcast
layout: post
categories: [Fiera, Wrap-Up]
description: "In questo episodio vi parlo della mia esperienza al Lucca Comics & Games 2019. Questa è stata la prima volta che sono riuscito a partecipare, anche se erano anni che desideravo andarci. Voi siete stati al Lucca Comics? Cosa ne pensate? Tornerete per l'edizione 2020?"
filename: ep6_lucca
file: https://adlpodcast.s3.eu-west-3.amazonaws.com/ep6_lucca.mp3
length: "33:27"
videoid: g5Q3_KuUq7E
type: main
Expand Down
Binary file added assets/img/Podcast_Cover_500.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit f9fc870

Please sign in to comment.