mirror of
https://github.com/schollz/cowyo.git
synced 2023-08-10 21:13:00 +03:00
5257fe771b
Former-commit-id: d8982466a6736a191c38eb84a185d9f94cf6c05f [formerly 83a34868f75173681e4eef3a5f600a4c739767ac] [formerly dfa3b885a9d93a3937e58ce9a4c8bfdecf5b2023 [formerly 99eccf40235c80a755e9fd8ca714036c45dfb7cd [formerly182389dbb1
]]] Former-commit-id: 135a25cfa4f97a3d812a9ddcd9fd26d016698742 [formerly f6c9c85696b25c06fcf5899d064d58b6eba0c0cc] Former-commit-id: b2d7009ee9ddc1505cc07c461c55ba205756e609 Former-commit-id:7d5842354b
93 lines
2.3 KiB
Cheetah
93 lines
2.3 KiB
Cheetah
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<title>{{ .Title }}</title>
|
|
|
|
{{ template "header" }}
|
|
|
|
|
|
|
|
<script src="/static/js/jquery.autogrowtextarea.min.js"></script>
|
|
<script src="/static/js/cowyo.js"></script>
|
|
<script>
|
|
external_ip = '{{ .ExternalIP }}'
|
|
title_name = '{{ .Title }}'
|
|
</script>
|
|
|
|
|
|
|
|
<style type="text/css">
|
|
textarea {
|
|
width: 100%;
|
|
margin: 5px 0;
|
|
padding: 3px;
|
|
border: none;
|
|
overflow: auto;
|
|
outline: none;
|
|
font-size: large;
|
|
-webkit-box-shadow: none;
|
|
-moz-box-shadow: none;
|
|
box-shadow: none;
|
|
font-family: Tahoma, sans-serif;
|
|
}
|
|
body {
|
|
margin: 0;
|
|
padding: 0.4em 1em 6em;
|
|
background: #fff;
|
|
max-width: 650px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
|
|
</style>
|
|
|
|
|
|
</head>
|
|
|
|
<body>
|
|
<!-- Fixed navbar -->
|
|
<nav class="navbar navbar-default navbar-fixed-bottom">
|
|
<div class="container">
|
|
<div class="navbar-header">
|
|
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
|
|
<span class="sr-only">Toggle navigation</span>
|
|
<span class="icon-bar"></span>
|
|
<span class="icon-bar"></span>
|
|
<span class="icon-bar"></span>
|
|
</button>
|
|
<a class="navbar-brand" href="/">Cowyo</a>
|
|
</div>
|
|
<div id="navbar" class="collapse navbar-collapse">
|
|
<ul class="nav navbar-nav">
|
|
<li class="active"><a href="/{{ .Title }}">Edit</a></li>
|
|
<li><a href="/{{ .Title }}/view">View</a></li>
|
|
<li><a href="/{{ .Title }}/list">List</a></li>
|
|
<li><a href="/about/view">About</a></li>
|
|
</ul>
|
|
</div>
|
|
<!--/.nav-collapse -->
|
|
</div>
|
|
</nav>
|
|
|
|
<form action='#' id="emit" method="post" name="emit">
|
|
|
|
<div>
|
|
<textarea autofocus rows=500 class='auto_submit_item' id="emit_data" name="emit_data" placeholder="Start typing, it will save automatically.
|
|
Go to cowyo.com/{{ .Title }} to reload this page.
|
|
Do not post anything private.
|
|
Anyone with the URL can access this note.">{{ .CurrentText }}</textarea>
|
|
</div>
|
|
|
|
</form>
|
|
<script>
|
|
$(document).ready(function() {
|
|
$("#emit_data").autoGrow();
|
|
});
|
|
</script>
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|