sighax.com is not supported here

This commit is contained in:
Plailect 2017-05-20 12:55:00 -04:00
parent ce9b67229d
commit a679eb733e
3 changed files with 25 additions and 0 deletions

View file

@ -30,3 +30,6 @@ footer:
title: Site Navigation
-
title: Why Ads?
danger:
-
title: Note that this guide is <i>NOT</i> affiliated with <a href="http://www.sighax.com/">sighax.com/</a>. That site's installer, created by <a href="https://twitter.com/derrekr6">derrekr6</a>, has been known to BRICK devices, and will not be supported here.

View file

@ -59,6 +59,17 @@ layout: default
<hr>
{% for link in site.data.navigation[locale].danger %}
{% if link.url contains 'http' %}
{% assign domain = '' %}
{% else %}
{% assign domain = site.url | append: site.baseurl %}
{% endif %}
<div class ="notice--danger"><b>{{ link.title }}</b></div>
{% endfor %}
<hr>
{{ content | remove: '<p>' | remove: '</p>' }}
{% if page.link %}<div><a href="{{ page.link }}" class="btn">{{ site.data.ui-text[site.locale].ext_link_label | default: "Direct Link" }}</a></div>{% endif %}

View file

@ -40,6 +40,17 @@ layout: default
<div class ="notice"><b>{{ link.title }}</b></div>
{% endfor %}
<hr>
{% for link in site.data.navigation[locale].danger %}
{% if link.url contains 'http' %}
{% assign domain = '' %}
{% else %}
{% assign domain = site.url | append: site.baseurl %}
{% endif %}
<div class ="notice--danger"><b>{{ link.title }}</b></div>
{% endfor %}
<hr>
{{ content }}