Skip to content
This repository has been archived by the owner on Jul 8, 2021. It is now read-only.

Allow 'about' button to have link #35

Open
wants to merge 1 commit into
base: dev
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions layouts/partials/about.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,10 @@ <h2 class="section-heading">{{ . }}</h2>
{{ with .Site.Params.about.description }}
<p class="text-faded">{{ . | markdownify }}</p>
{{ end }}
{{ with .Site.Params.about.buttonText }}
<a href="#" class="btn btn-default btn-xl">{{ . }}</a>
{{ end }}

<a href="{{ .Site.Params.about.link }}" class="btn btn-default btn-xl">
{{ .Site.Params.about.buttonText }}
</a>
</div>
</div>
</div>
Expand Down