Browse Source

Adding glitch class to h1 for glitch effect when using test CSS theme

pull/40/head
Benjamin Southall 7 years ago
parent
commit
fef6f0bef9
  1. 1
      templates/themes/basic/index.html
  2. 2
      templates/themes/catalog/catalog.html
  3. 2
      templates/themes/donate/donate.html
  4. 2
      templates/themes/faq/index.html
  5. 2
      templates/themes/irc/irc.html
  6. 2
      templates/themes/radio/radio.html
  7. 2
      templates/themes/rules/rules.html
  8. 2
      templates/themes/stream/stream.html
  9. 2
      templates/themes/zine/zine.html

1
templates/themes/basic/index.html

@ -17,6 +17,7 @@
{{ boardlist.top }}
</div>
<header>
<h1 class="glitch" data-text="{{ settings.title }}"> {{ settings.title }}</h1>
<h1>{{ settings.title }}</h1>
<div class="subtitle">{{ settings.subtitle }}</div>
</header>

2
templates/themes/catalog/catalog.html

@ -16,7 +16,7 @@
{{ boardlist.top }}
</div>
<header>
<h1>{{ settings.title }} (<a href="{{link}}">/{{ board }}/</a>)</h1>
<h1 class="glitch" data-text="{{ settings.title }} /{{ board }}/"> {{ settings.title }} (<a href="{{link}}">/{{ board }}/</a>)</h1>
<div class="subtitle">{{ settings.subtitle }}</div>
</header>

2
templates/themes/donate/donate.html

@ -15,7 +15,7 @@
<div class="bar top">{{ boardlist.top }}</div>
<header>
<h1>{{ settings.title }}</h1>
<h1 class="glitch" data-text="{{ settings.title }}"> {{ settings.title }}</h1>
<div class="subtitle">{{ settings.subtitle }}</div>
</header>
<center>

2
templates/themes/faq/index.html

@ -18,7 +18,7 @@
{{ boardlist.top }}
</div>
<header>
<h1>{{ settings.title }}</h1>
<h1 class="glitch" data-text="{{ settings.title }}"> {{ settings.title }}</h1>
<div class="subtitle">{{ settings.subtitle }}</div>
</header>
<center><img src="static/lain_is_cute_datass_small_teal.png" alt="mascot"/></center>

2
templates/themes/irc/irc.html

@ -17,7 +17,7 @@
</div>
<header>
<h1>{{ settings.title }}</h1>
<h1 class="glitch" data-text="{{ settings.title }}"> {{ settings.title }}</h1>
<div class="subtitle">{{ settings.subtitle }}</div>
</header>

2
templates/themes/radio/radio.html

@ -72,7 +72,7 @@ $(document).ready(function(){
{% if config.url_banner %}<img class="board_image" src="{{ config.url_banner }}" {% if config.banner_width or config.banner_height %}style="{% if config.banner_width %}width:{{ config.banner_width }}px{% endif %};{% if config.banner_width %}height:{{ config.banner_height }}px{% endif %}" {% endif %}alt="" />{% endif %}
<header>
<h1>{{ settings.title }}</h1>
<h1 class="glitch" data-text="{{ settings.title }}"> {{ settings.title }}</h1>
<div class="subtitle">{{ settings.subtitle }}</div>
</header>

2
templates/themes/rules/rules.html

@ -16,7 +16,7 @@
</div>
<header>
<h1>{{ settings.title }}</h1>
<h1 class="glitch" data-text="{{ settings.title }}"> {{ settings.title }}</h1>
<div class="subtitle">{{ settings.subtitle }}</div>
</header>

2
templates/themes/stream/stream.html

@ -104,7 +104,7 @@ function change_format(e) {
{{ boardlist.top }}
</div>
<header>
<h1>{{ settings.title }}</h1>
<h1 class="glitch" data-text="{{ settings.title }}"> {{ settings.title }}</h1>
<div class="subtitle">{{ settings.subtitle }}</div>
</header>

2
templates/themes/zine/zine.html

@ -50,7 +50,7 @@
<body>
<div class="bar top">{{ boardlist.top }}</div>
<header>
<h1>{{ settings.title }}</h1>
<h1 class="glitch" data-text="{{ settings.title }}"> {{ settings.title }}</h1>
<div class="subtitle">{{ settings.subtitle }}</div>
</header>
<img alt="mascot" src="/static/lain_is_cute_datass_small.png"/>

Loading…
Cancel
Save