Skip to content
Snippets Groups Projects
Commit 293fd40e authored by Ian Muchina's avatar Ian Muchina :speech_balloon:
Browse files

Update Talk Page

Increase font size of title & de-emphasize event details
parent 003e04c9
No related branches found
No related tags found
1 merge request!71Update Talk Page
Pipeline #272441 passed
......@@ -14,18 +14,37 @@ Find out how to contribute on our [Contribute]({{ "/contribute/" | relative_url
## Talks
{% for x in site.data.presentations %}
{% assign slug = x.title | append: "-" | append: x.event.date | slugify %}
<div class="pt-3" id="{{ slug }}"></div>
<article>
<h3 id="{{slug}}">{{x.title}}</h3>
<a class="font-weight-bold text-secondary" href="{{x.event.url}}" >{{x.event.name}} • {{ x.event.location }}</a>
<p class="my-1">by {{ x.presented_by }}</p>
<section>
{% if x.video.youtube %}
<a class="btn btn-sm btn-outline-primary" href="https://www.youtube.com/watch?v={{ x.video.youtube }}">YouTube</a>
{% endif %}
{% if x.video.url %}
<a class="btn btn-sm btn-outline-primary "
href="{{ x.video.url }}">Video</a>
{% endif %}
*{{ x.title }}* [&#182;](#{{ slug }})<br>by {{ x.presented_by }}<br>
[{{ x.event.name }}]({{ x.event.url }}) &bull; {{ x.event.location }} {% if x.event.date %}&bull; {{ x.event.date | date: "%-d %B %Y" }}{% endif %}
{% if x.video.subtitles %}
<a class="btn btn-sm btn-outline-primary" href="{{ x.video.subtitles }}">Subtitles</a>
{% endif %}
{% if x.video.url %}<a href="{{ x.video.url }}" class="btn btn-sm btn-outline-primary">Video</a>{% endif %}
{% if x.video.youtube %}<a href="https://www.youtube.com/watch?v={{ x.video.youtube }}" class="btn btn-sm btn-outline-primary">YouTube</a>{% endif %}
{% if x.video.subtitles %}<a href="{{ x.video.subtitles }}" class="btn btn-sm btn-outline-primary">Subtitles</a>{% endif %}
{% if x.slides %}<a href="{{ x.slides }}" class="btn btn-sm btn-outline-primary">Slides</a>{% endif %}
{% if x.slides %}
<a class="btn btn-sm btn-outline-primary" href="{{ x.slides }}">Slides</a>
{% endif %}
</section>
</article>
{% endfor %}
## Slides
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment