You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
1.0 KiB
33 lines
1.0 KiB
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>pastebucket :: {{id}}</title>
|
|
<link rel="stylesheet" href="/s/pastebucket.css">
|
|
<link rel="stylesheet" href="/s/code.css">
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<h1><a href="{{site_url|safe}}">pastebucket</a> :: <a href="/{{id}}">{{id}}</a></h1>
|
|
<hr>
|
|
</header>
|
|
<nav>
|
|
<ul>
|
|
<li><a href="/{{id}}/raw">raw</a></li>
|
|
<li><a href="/{{id}}/edit">edit</a></li>
|
|
<li>{{syntax}}</li>
|
|
<li>{{dt}}</li>
|
|
</ul>
|
|
</nav>
|
|
<main>
|
|
<div>
|
|
{% for line in text_lines %}
|
|
<div id="{{loop.index}}" onmouseover="document.getElementById('{{loop.index}}').firstElementChild.firstElementChild.style = 'color: red'" onmouseout="document.getElementById('{{loop.index}}').firstElementChild.firstElementChild.style = 'color: lightcoral'">
|
|
<div class="index no-select" style="width: {{index_len}}ch"><a href="#{{loop.index}}">{{loop.index}}</a></div><div class="line">{{line|safe}}</div>
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
</main>
|
|
</body>
|
|
</html>
|