Skip to content
This repository was archived by the owner on Sep 23, 2020. It is now read-only.

Commit 0cdf3dc

Browse files
committed
Make presentation titles links
1 parent e06b76f commit 0cdf3dc

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

layouts/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ <h2 class="uppercase mb0">Recent Presentations</h2>
4444
</div>
4545
<div class="col-md-6 col-md-offset-1 content">
4646
<p class="mb0">{{ dateFormat "1. 2. 2006" $element.Date }}</p>
47-
<h3 class="mt0 mb0">{{ $element.Title }}</h3>
47+
<h3 class="mt0 mb0"><a class="title-style" href="{{ $element.Permalink }}">{{ $element.Title }}</a></h3>
4848
<p class="mb48">By {{ $element.Params.presenter }}</p>
4949
<p class="mb24">
5050
{{ $element.Description }}

static/css/custom.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,3 +29,7 @@
2929
margin-left: -100px;
3030
margin-top: -25px;
3131
}
32+
33+
a.title-style {
34+
color: inherit;
35+
}

0 commit comments

Comments
 (0)