mirror of
https://github.com/KingDuckZ/kamokan.git
synced 2025-08-23 13:40:51 +00:00
Import html files
This commit is contained in:
parent
1870829ec2
commit
e92866251b
37 changed files with 1262 additions and 0 deletions
57
html/index.html.mstch
Normal file
57
html/index.html.mstch
Normal file
|
@ -0,0 +1,57 @@
|
|||
<!DOCTYPE html>
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
|
||||
<head>
|
||||
<title>Tawashi</title>
|
||||
<meta charset="UTF-8"/>
|
||||
<meta name="description" content="Tawashi, text storage site." />
|
||||
<meta name="keywords" content="text storage, pastebin, source code snippets, code review" />
|
||||
<meta name="author" content="Unknown" />
|
||||
<link rel="stylesheet" href="tawashi.css" />
|
||||
<link rel="icon" href="icon" />
|
||||
|
||||
</head>
|
||||
<body>
|
||||
<form action="{{base_uri}}/paste.cgi" method="post" accept-charset="UTF-8">
|
||||
|
||||
<div id="topbar">
|
||||
<p id="version">tawashi {{version}}</p>
|
||||
<a href="index.html"><img src="Pictures/tawashi-icon-new.png" alt="tawashi icon" class="icon"></a>
|
||||
<a href="save.html"><input type="image" src="Pictures/save-ink-t.png" alt="Submit" class="icon-green" title="Save"/></a>
|
||||
<a href="index.html"><img src="Pictures/new-ink-t.png" alt="new icon" class="icon-green" title="New"/></a>
|
||||
<a href="edit.html"><img src="Pictures/edit-ink-t.png" alt="duplicate and edit icon" class="icon-green" title="Duplicate and Edit"/></a>
|
||||
<a href="text.html"><img src="Pictures/text-ink-t.png" alt="text icon" class="icon-green" title="Text only"/></a>
|
||||
<img src="Pictures/C++-icon.jpeg" alt="c++ icon" class="icon-right"/>
|
||||
<a href=""><img src="Pictures/github-icon.jpeg" alt="github icon" class="icon-right" /></a>
|
||||
</div>
|
||||
|
||||
<div id="content">
|
||||
<textarea type="text" id="PasteTextBox" name="pastie" placeholder=">Text..." autofocus required autocomplete="off" name="text"></textarea>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<p class="title">Syntax Highlighting:</p>
|
||||
<select name="Language" class="selectBox">
|
||||
<option value="None" selected="selected">None </option>
|
||||
<option value="C++">C++</option>
|
||||
<option value="D">D</option>
|
||||
<option value="HTML">HTML</option>
|
||||
<option value="CSS">CSS</option>
|
||||
</select>
|
||||
|
||||
<p class="title">Paste Expiration:</p>
|
||||
<select name="Expiration" class="selectBox">
|
||||
<option value="10 minutes" >10 minutes</option>
|
||||
<option value="1 hour">1 hour</option>
|
||||
<option value="1 day" selected="selected">1 day</option>
|
||||
<option value="1 week">1 week</option>
|
||||
<option value="2 weeks">2 weeks</option>
|
||||
<option value="1 month">1 month</option>
|
||||
</select>
|
||||
</div>
|
||||
|
||||
</form>
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue