Skip to content

Commit 2e1722f

Browse files
committed
Aesthetic patch.
Changelog excerpt: - Added missing fullmoon template file.
1 parent fd4831c commit 2e1722f

File tree

3 files changed

+56
-1
lines changed

3 files changed

+56
-1
lines changed

Changelog.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,11 @@ __*Why "v3.0.0" instead of "v1.0.0?"*__ Prior to phpMussel v3, the "phpMussel Co
1515
[2020.10.30; New Feature; Maikuolan]: Added the ability to specify a custom assets path to the instantiated Web object.
1616

1717
[2020.12.04; Maikuolan]: Maintenance release (dependencies update, repository cleanup, etc).
18+
19+
### v3.1.1
20+
21+
[2021.03.03; Maikuolan]: Maintenance release.
22+
23+
### v3.1.2
24+
25+
[2021.04.27; Maikuolan]: Added missing fullmoon template file.

assets/config.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
# License: GNU/GPLv2
88
# @see LICENSE.txt
99
#
10-
# This file: Configuration defaults file (last modified: 2020.10.08).
10+
# This file: Configuration defaults file (last modified: 2021.04.27).
1111
##/
1212

1313
web:
@@ -31,6 +31,7 @@ web:
3131
choices:
3232
default: "Default"
3333
bluemetal: "Blue Metal"
34+
fullmoon: "Full Moon"
3435
moss: "Moss"
3536
primer: "Primer"
3637
primerdark: "Primer Dark"

assets/template_fullmoon.html

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
<!doctype html>
2+
<html lang="{xmlLang}" xml:lang="{xmlLang}" dir="{Text Direction}">
3+
<head>
4+
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
5+
<meta name="robots" content="noindex,nofollow" />
6+
<meta name="viewport" content="width=device-width, initial-scale=1" />
7+
<link rel="shortcut icon" type="image/png" href="data:image/png;base64,{favicon}" />
8+
<title>phpMussel</title>
9+
<style>
10+
#wrapper,#pp{font-weight:700}
11+
#wrapper{border-style:solid;border-color:#aaa;background-color:#3e4643;width:98%;margin:auto;padding:2px;border-top-right-radius:24px}
12+
body,#wrapper{text-align:center}
13+
hr,#wrapper{border-width:1px}
14+
#wrapper_inner{width:96%;margin:auto;padding:2px}
15+
#results,#phpmusselversion{color:#e7ab7d}
16+
#denied{font-size:calc(20px * {magnification})}
17+
#footer_inner{font-size:calc(12px * {magnification});letter-spacing:0px;white-space:nowrap;text-align:right}
18+
#generated_by{color:#000}
19+
#generated_by,#phpmusselversion{display:inline}
20+
body{font-family:'Open Sans',sans-serif,'Lucida Grande',Tahoma,Verdana,Arial,MingLiU;font-size:calc(12px * {magnification});letter-spacing:1px;text-decoration:none;border-style:none;white-space:normal;background-color:#36393b;color:#999}
21+
hr{border-style:solid none none;margin:5px 2px 0;padding:2px;color:#aaa}
22+
#results{margin:10px;padding:2px}
23+
</style>
24+
</head>
25+
26+
<body>
27+
<div id="wrapper">
28+
<div id="wrapper_inner">
29+
<hr />
30+
<div id="results">
31+
<div id="denied"{Attache}>{denied}</div>
32+
<div id="denied_reason"{Attache}>{denied_reason}</div>
33+
</div>
34+
<div id="detected">{detected}</div>
35+
<hr />
36+
<div id="footer">
37+
<div id="footer_inner">
38+
<div id="generated_by"{Attache}>{GeneratedBy}</div>
39+
</div>
40+
</div>
41+
</div>
42+
</div>
43+
<div id="pp">{pp}</div>
44+
</body>
45+
46+
</html>

0 commit comments

Comments
 (0)