diff --git a/_includes/replace_info.html b/_includes/replace_info.html new file mode 100644 index 0000000000000000000000000000000000000000..f3ce31acdfddafaa91427c010a1735ffb41491c4 --- /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>