sighax.com is not supported here
This commit is contained in:
parent
ce9b67229d
commit
a679eb733e
3 changed files with 25 additions and 0 deletions
|
@ -30,3 +30,6 @@ footer:
|
||||||
title: Site Navigation
|
title: Site Navigation
|
||||||
-
|
-
|
||||||
title: Why Ads?
|
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.
|
|
@ -59,6 +59,17 @@ layout: default
|
||||||
|
|
||||||
<hr>
|
<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>' }}
|
{{ 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 %}
|
{% 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 %}
|
||||||
|
|
||||||
|
|
|
@ -40,6 +40,17 @@ layout: default
|
||||||
<div class ="notice"><b>{{ link.title }}</b></div>
|
<div class ="notice"><b>{{ link.title }}</b></div>
|
||||||
{% endfor %}
|
{% 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>
|
<hr>
|
||||||
|
|
||||||
{{ content }}
|
{{ content }}
|
||||||
|
|
Loading…
Reference in a new issue