From 0da8044bd9d05ef32126946f8fa648f1c068ec40 Mon Sep 17 00:00:00 2001 From: resynth1943 <resynth1943@tutanota.com> Date: Fri, 3 Jul 2020 11:40:11 +0100 Subject: [PATCH] Add replace info include --- _includes/replace_info.html | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 _includes/replace_info.html diff --git a/_includes/replace_info.html b/_includes/replace_info.html new file mode 100644 index 0000000..f3ce31a --- /dev/null +++ b/_includes/replace_info.html @@ -0,0 +1,17 @@ +<div class="replace-info"> +<ul class="replace-info-list"> + {% if source %} + <li class="replace-info-source"> + <a href="{{ source }}" alt="The source code of this project">Source code</a> + </li> + {% endif %} + {% if home_page %} + <li class="replace-info-home-page"> + <a href="{{ home_page }}" alt="The home page of this project">Home page</a> + </li> + {% endif %} + </ul> + {% if license %} + <p class="replace-info-addendum">Licensed under the {{ license }} license.</p> + {% endif %} +</div> -- GitLab