crlf -> lf

This commit is contained in:
Emi Vasilek 2023-11-06 23:55:13 +01:00
parent 15ce2f152f
commit d42cb1beee
3 changed files with 394 additions and 394 deletions

View file

@ -1,8 +1,8 @@
{% extends "base.html" %}
{%block title%}Recipes{%endblock%}
{%block body %}
<h1>Recipes</h1>
{% for recipe in recipes %}
<li><a href="{{ recipe.outpath }}">{{ recipe.title }}</a></li>
{% endfor %}
{% extends "base.html" %}
{%block title%}Recipes{%endblock%}
{%block body %}
<h1>Recipes</h1>
{% for recipe in recipes %}
<li><a href="{{ recipe.outpath }}">{{ recipe.title }}</a></li>
{% endfor %}
{%endblock%}