1
0
Fork 0

Indent code using web-mode.

Bug511-Bosh
Lan Hui 2023-08-11 18:39:36 +08:00
parent c110de0393
commit dff560cc73
1 changed files with 38 additions and 38 deletions

View File

@ -1,50 +1,50 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="en"> <html lang="en">
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=0.5, maximum-scale=3.0, user-scalable=yes" /> <meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=0.5, maximum-scale=3.0, user-scalable=yes" />
<meta name="format-detection" content="telephone=no" /> <meta name="format-detection" content="telephone=no" />
{{ yml['header'] | safe }} {{ yml['header'] | safe }}
{% if yml['css']['item'] %} {% if yml['css']['item'] %}
{% for css in yml['css']['item'] %} {% for css in yml['css']['item'] %}
<link href="{{ css }}" rel="stylesheet"> <link href="{{ css }}" rel="stylesheet">
{% endfor %} {% endfor %}
{% endif %} {% endif %}
{% if yml['js']['head'] %} {% if yml['js']['head'] %}
{% for js in yml['js']['head'] %} {% for js in yml['js']['head'] %}
<script src="{{ js }}" ></script> <script src="{{ js }}" ></script>
{% endfor %} {% endfor %}
{% endif %} {% endif %}
<title>EnglishPal Study Room for {{username}}</title> <title>EnglishPal Study Room for {{username}}</title>
</head> </head>
<body> <body>
<div class="container-fluid"> <div class="container-fluid">
<p class="mt-md-3"> <p class="mt-md-3">
<input type="button" id="btn-cancel-selection" value="取消勾选" onclick="toggleCheckboxSelection(false)" /> <input type="button" id="btn-cancel-selection" value="取消勾选" onclick="toggleCheckboxSelection(false)" />
<input type="button" id="btn-selection" value="全部勾选" onclick="toggleCheckboxSelection(true)" /> <input type="button" id="btn-selection" value="全部勾选" onclick="toggleCheckboxSelection(true)" />
</p> </p>
<form method="post" action="/{{username}}/mark"> <form method="post" action="/{{username}}/mark">
<button type="submit" name="add-btn" class="btn btn-outline-primary btn-lg">加入我的生词簿</button> <button type="submit" name="add-btn" class="btn btn-outline-primary btn-lg">加入我的生词簿</button>
{% for x in lst %} {% for x in lst %}
{% set word = x[0]%} {% set word = x[0]%}
<p> <p>
<font color="grey">{{loop.index}}</font> <font color="grey">{{loop.index}}</font>
: :
<a href='http://youdao.com/w/eng/{{word}}/#keyfrom=dict2.index' title={{word}}>{{word}}</a> <a href='http://youdao.com/w/eng/{{word}}/#keyfrom=dict2.index' title={{word}}>{{word}}</a>
({{x[1]}}) ({{x[1]}})
<input type="checkbox" name="marked" value="{{word}}" checked> <input type="checkbox" name="marked" value="{{word}}" checked>
</p> </p>
{% endfor %} {% endfor %}
</form> </form>
{{ yml['footer'] | safe }} {{ yml['footer'] | safe }}
{% if yml['js']['bottom'] %} {% if yml['js']['bottom'] %}
{% for js in yml['js']['bottom'] %} {% for js in yml['js']['bottom'] %}
<script src="{{ js }}" ></script> <script src="{{ js }}" ></script>
{% endfor %} {% endfor %}
{% endif %} {% endif %}
</div> </div>
</body> </body>
</html> </html>