diff options
author | Ailin Nemui <ailin@z30a.localdomain> | 2016-08-12 18:46:23 +0200 |
---|---|---|
committer | Ailin Nemui <ailin@z30a.localdomain> | 2016-08-15 09:55:12 +0200 |
commit | 89a1523a59893c013ef99b3e052a34cc4e313c9a (patch) | |
tree | b548ce2fca56649cf2ad59bd6d8faac58065c9bb /_includes | |
parent | bf9c681e4aac3ea8a8c2a89816114237dbb05af3 (diff) | |
download | irssi.github.io-89a1523a59893c013ef99b3e052a34cc4e313c9a.zip |
implement distribution chooser
Diffstat (limited to '_includes')
-rw-r--r-- | _includes/dl_os_icon.html | 6 | ||||
-rw-r--r-- | _includes/footer.html | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/_includes/dl_os_icon.html b/_includes/dl_os_icon.html new file mode 100644 index 0000000..2dbbad2 --- /dev/null +++ b/_includes/dl_os_icon.html @@ -0,0 +1,6 @@ +<input id="in-{{ include.name }}" type="radio" name="distro" /> +<label for="in-{{ include.name }}" class="icon btn btn-default" onclick="chooseDlc(this, '{{ include.name }}')" markdown="1"> +<img src="{{ site.baseurl }}/assets/{{ include.name }}.png" class="osimg" /><br /> + {{ include.text }} +</label>{% comment %} +{% endcomment %} diff --git a/_includes/footer.html b/_includes/footer.html index 2ec5d5a..1e2cfae 100644 --- a/_includes/footer.html +++ b/_includes/footer.html @@ -13,4 +13,4 @@ </p> </div> </footer> -<script src="/assets/js/irssi.js"></script> +<script src="{{ site.baseurl }}/assets/js/irssi.js"></script> |