changed .{{ -> {{

master
Castro0o 4 years ago
parent e5c984cbe3
commit d23e4857af

3
.gitignore vendored

@ -7,4 +7,5 @@ __pycache__/*
app/__pycache__/
app/__pycache__/*
app/static/dewatermark/
app/static/dewatermark/*
app/static/dewatermark/*
*.pyc

@ -9,8 +9,8 @@
{% for cover in covers %}
<div class="cover">
<img src=".{{ url_for('static', filename='covers/' + cover) }}"></img>
<figcaption><a href=".{{ url_for('static', filename='covers/' + cover) }}">{{ cover }}</a></figcaption>
<img src="{{ url_for('static', filename='covers/' + cover) }}"></img>
<figcaption><a href="{{ url_for('static', filename='covers/' + cover) }}">{{ cover }}</a></figcaption>
</div>
{% endfor %}

@ -5,11 +5,11 @@
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="icon" href=".{{ url_for('static', filename='img/beau.png') }}">
<link rel="icon" href="{{ url_for('static', filename='img/beau.png') }}">
<meta name="date" content="JULY 2020">
<link rel="stylesheet" href=".{{ url_for('static', filename='css/reset.css') }}">
<link rel="stylesheet" href=".{{ url_for('static', filename='css/style.css') }}">
<script src=".{{ url_for('static', filename='js/app.js') }}"></script>
<link rel="stylesheet" href="{{ url_for('static', filename='css/reset.css') }}">
<link rel="stylesheet" href="{{ url_for('static', filename='css/style.css') }}">
<script src="{{ url_for('static', filename='js/app.js') }}"></script>
<title>{% block title %}{% endblock %}</title>
</head>

@ -6,10 +6,10 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="date" content="JULY 2020">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href=".{{ url_for('static', filename='css/reset.css') }}">
<link rel="stylesheet" href=".{{ url_for('static', filename='css/style.css') }}">
<script src=".{{ url_for('static', filename='js/app.js') }}"></script>
<link rel="icon" href=".{{ url_for('static', filename='img/beau.png') }}">
<link rel="stylesheet" href="{{ url_for('static', filename='css/reset.css') }}">
<link rel="stylesheet" href="{{ url_for('static', filename='css/style.css') }}">
<script src="{{ url_for('static', filename='js/app.js') }}"></script>
<link rel="icon" href="{{ url_for('static', filename='img/beau.png') }}">
<title>{% block title %}{% endblock %}</title>
</head>

Loading…
Cancel
Save