File: edit.html

package info (click to toggle)
circuits 3.2.3-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,980 kB
  • sloc: python: 17,583; javascript: 3,226; makefile: 100
file content (34 lines) | stat: -rw-r--r-- 1,175 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
	<head>
		<title>Editing %(title)s</title>
		<meta name="description" content="" />
		<meta name="keywords" content="" />
		<meta name="author" content="James Mills" />
		<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=utf-8" />
		<link rel="stylesheet" title="Normal" type="text/css" media="screen" href="css/screen.css" />
	</head>
	<body>
		<div id="main">
			<div id="header">
				<h1>Editing %(title)s</h1>
			</div>
   <div id="menu">%(menu)s</div>
			<div id="content">
    <div id="editor" style="display: block">
     <form action="" method="post">
      <div id="editor-content">
       <textarea id="text" name="text" rows="25" cols="80">%(text)s</textarea>
      </div>
      <div id="editor-buttons">
       <button type="submit" name="save" value="Save">Save</button>
      </div>
     </form>
    </div>
			</div>
			<div id="footer">
    <p>Powered by <a href="http://circuitsframework.com/">circuits-%(version)s</a></p>
   </div>
		</div>
	</body>
</html>