Compare commits
2 commits
7cda8a7e08
...
98a70bec1d
| Author | SHA1 | Date | |
|---|---|---|---|
| 98a70bec1d | |||
| a726108f24 |
2 changed files with 14 additions and 11 deletions
|
|
@ -15,15 +15,15 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
features = {
|
features = {
|
||||||
submissions.enable = false;
|
submissions.enable = true;
|
||||||
websites.enable = false;
|
websites.enable = true;
|
||||||
drawing = {
|
drawing = {
|
||||||
enable = false;
|
enable = true;
|
||||||
canvasWidth = 400;
|
canvasWidth = 300;
|
||||||
canvasHeight = 200;
|
canvasHeight = 140;
|
||||||
};
|
};
|
||||||
voiceNote = {
|
voiceNote = {
|
||||||
enable = false;
|
enable = true;
|
||||||
maxDuration = 20;
|
maxDuration = 20;
|
||||||
};
|
};
|
||||||
telegram = {
|
telegram = {
|
||||||
|
|
@ -44,8 +44,8 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
styles = {
|
styles = {
|
||||||
templateFile = "./templates/default.html";
|
templateFile = ./templates/default.html;
|
||||||
successTemplateFile = "./templates/success.html";
|
successTemplateFile = ./templates/success.html;
|
||||||
separator = "-----------";
|
separator = "-----------";
|
||||||
labels = {
|
labels = {
|
||||||
submit = "Submit";
|
submit = "Submit";
|
||||||
|
|
@ -54,8 +54,8 @@
|
||||||
message = "Your message*:";
|
message = "Your message*:";
|
||||||
};
|
};
|
||||||
message = {
|
message = {
|
||||||
width = 400;
|
width = 300;
|
||||||
height = 150;
|
height = 100;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -4,17 +4,20 @@
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<title>{{title}}</title>
|
<title>{{title}}</title>
|
||||||
|
<link rel="stylesheet" href="/style.css">
|
||||||
{{style}}
|
{{style}}
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div class="page-container">
|
<div class="page-container">
|
||||||
<nav style="white-space:normal;">
|
<nav>
|
||||||
<a href="/">ily [dot] rs</a> |
|
<a href="/">ily [dot] rs</a> |
|
||||||
<a href="/links/">links</a> |
|
<a href="/links/">links</a> |
|
||||||
<a href="/now/">now</a> |
|
<a href="/now/">now</a> |
|
||||||
sign the <a href="/g/">guestbook</a>
|
sign the <a href="/g/">guestbook</a>
|
||||||
</nav>
|
</nav>
|
||||||
|
|
||||||
{{form}}
|
{{form}}
|
||||||
|
|
||||||
{{entries}}
|
{{entries}}
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue