Initial commit
This commit is contained in:
37
mask/index.html
Executable file
37
mask/index.html
Executable file
@@ -0,0 +1,37 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
|
||||
<meta name="author" content="Franzz" />
|
||||
<link href="style.css" rel="stylesheet" type="text/css" />
|
||||
<script type="text/javascript" src="functions.js"></script>
|
||||
<link rel="shortcut icon" href="images/favicon.ico" />
|
||||
<title>Thoughts • #title#</title>
|
||||
</head>
|
||||
<body>
|
||||
<div id="container">
|
||||
<div id="header"></div>
|
||||
<div id="menu">
|
||||
#menu#
|
||||
</div>
|
||||
<div id="main">
|
||||
#content#
|
||||
</div>
|
||||
<div id="footer">
|
||||
Designed and powered by <a href="mailto:franzz@lutran.fr" title="Send an email">Franzz</a> & <a href="mailto:clarita@lutran.fr" title="Send an email">Clarita</a>.
|
||||
My Thoughts Project under <a href="http://www.gnu.org/licenses/gpl.html" target="_blank">GPLv3</a> License.
|
||||
</div>
|
||||
#errors#
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
for (var i in document.forms)
|
||||
{
|
||||
var formName = document.forms[i].name;
|
||||
if(formName && formName.indexOf('post_') === 0)
|
||||
{
|
||||
addInput(formName, 'post_token', 'hidden', '#post_token#');
|
||||
}
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user