mirror of
https://github.com/Derpy-Leggies/OnlyLegs.git
synced 2025-01-31 18:28:30 +00:00
Michał
7605e5ab40
Load full image on first click of full resolution button Change background image Change way images load into the view Add Lazy Loading
12 lines
304 B
HTML
12 lines
304 B
HTML
{% extends 'layout.html' %}
|
|
|
|
{% block header %}
|
|
<img src="{{ url_for('static', filename='images/background.svg') }}" onload="imgFade(this)" style="opacity:0;">
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="app">
|
|
<h1>Image Group</h1>
|
|
<p>{{group_id}}</p>
|
|
</div>
|
|
{% endblock %} |