chore: remove random banner

This commit is contained in:
jeffreytse 2020-07-10 22:30:32 +08:00
parent 9204cde353
commit b83c3ac237

View file

@ -19,20 +19,9 @@
{% assign subheading = return %} {% assign subheading = return %}
{% if banner %} {% if banner %}
{% assign auto_banner = true %}
{% assign array = banner | split: '/' %}
{% assign protocol = array[0] %}
{% if array.size > 1 and (protocol == '' or protocol == 'http:' or protocol == 'https:') %}
{% assign auto_banner = false %}
{% endif %}
<section class="page-banner"> <section class="page-banner">
<div class="page-banner-img"> <div class="page-banner-img">
{%- if auto_banner == false -%} <div style="background-image: url({{ banner }})"></div>
<div style="background-image: url({{ banner }})"></div>
{%- endif -%}
</div> </div>
<div class="wrapper"> <div class="wrapper">
<div class="page-banner-inner"> <div class="page-banner-inner">
@ -48,36 +37,14 @@
<h1 class="page-banner-heading"> <h1 class="page-banner-heading">
{{ heading | default: page.title | escape }} {{ heading | default: page.title | escape }}
</h1> </h1>
<h3 class="page-banner-subheading"> <h2 class="page-banner-subheading">
{{ subheading | default: page.subtitle | escape }} {{ subheading | default: page.subtitle | escape }}
</h3> </h2>
</div> </div>
{%- endif -%} {%- endif -%}
</div> </div>
</div> </div>
</section> </section>
{%- if auto_banner -%}
{%- assign selector = ".page-banner-img" -%}
{%- if banner == "default" -%}
{%- assign heading = page.heading | default: page.title | escape -%}
{%- assign subheading = page.subheading | default: page.subtitle | escape -%}
{%- assign seed = page.date | append: heading | append: subheading -%}
{%- else -%}
{%- assign seed = 'theme-' | append: banner -%}
{%- endif -%}
{%- assign zoom = 1.5 -%}
{%- include extensions/trianglify.html -%}
{%- endif -%}
{%- endif -%} {%- endif -%}