aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--default.template4
-rwxr-xr-xnotYetAnotherWiki.lua3
2 files changed, 4 insertions, 3 deletions
diff --git a/default.template b/default.template
index fba6ef4..eed4c59 100644
--- a/default.template
+++ b/default.template
@@ -10,7 +10,7 @@
10 html {font-family: sans-serif;} 10 html {font-family: sans-serif;}
11 11
12 pre { 12 pre {
13 background-color: $karenpurple$; 13 background-color: $onefangPurple$;
14 overflow-x: auto; 14 overflow-x: auto;
15 width: 92vw; 15 width: 92vw;
16 margin: 1px; 16 margin: 1px;
@@ -23,7 +23,7 @@
23 </style> 23 </style>
24 </head> 24 </head>
25 <body bgcolor="black" text="white" alink="yellow" link="yellowgreen" vlink="red"> 25 <body bgcolor="black" text="white" alink="yellow" link="yellowgreen" vlink="red">
26 <table style="background-color: $karenpurple$; width: 98vw; margin: 1; line-style: none; border-style: none; border-spacing: 0;"> 26 <table style="background-color: $karenPurple$; width: 98vw; margin: 1; line-style: none; border-style: none; border-spacing: 0;">
27 <tr> 27 <tr>
28 <td><img src="$logo$" alt="alt text" title="Not (Yet) (Another / A) Wiki."/></td> 28 <td><img src="$logo$" alt="alt text" title="Not (Yet) (Another / A) Wiki."/></td>
29 <td style="text-align: right;">$header$ &nbsp; plus login and register buttons &nbsp;</td> 29 <td style="text-align: right;">$header$ &nbsp; plus login and register buttons &nbsp;</td>
diff --git a/notYetAnotherWiki.lua b/notYetAnotherWiki.lua
index 0e1caf9..297a57d 100755
--- a/notYetAnotherWiki.lua
+++ b/notYetAnotherWiki.lua
@@ -8,11 +8,12 @@ local lcmark = require("lcmark") -- https://github.com/jgm/lcmark
8 8
9-- Some global data. 9-- Some global data.
10local globalData = { 10local globalData = {
11 ['_'] = '&nbsp;', ['dlr'] = '&dollar;', ['karenpurple'] = '#8800ff', 11 ['_'] = '&nbsp;', ['dlr'] = '&dollar;',
12 ['devuanCinnabarDark'] = '#310202', ['devuanCinnabarLight'] = '#510505', 12 ['devuanCinnabarDark'] = '#310202', ['devuanCinnabarLight'] = '#510505',
13 ['devuanDarkPurpyDark'] = '#33313b', ['devuanDarkPurpyLight'] = '#3c3a45', 13 ['devuanDarkPurpyDark'] = '#33313b', ['devuanDarkPurpyLight'] = '#3c3a45',
14 ['devuanDeepSeaDark'] = '#132f40', ['devuanDeepSeaLight'] = '#1a4562', 14 ['devuanDeepSeaDark'] = '#132f40', ['devuanDeepSeaLight'] = '#1a4562',
15 ['devuanSaphireDark'] = '#004489', ['devuanSaphireLight'] = '#00509f', 15 ['devuanSaphireDark'] = '#004489', ['devuanSaphireLight'] = '#00509f',
16 ['karenPurple'] = '#8800ff', ['onefangPurple'] = '#cc00ff',
16 favicon = 'nYAW_icon.png', logo = 'nYAW.png', header = '', --menu = '', 17 favicon = 'nYAW_icon.png', logo = 'nYAW.png', header = '', --menu = '',
17 history = '', footer = 'Powered by <a href="https://sledjhamr.org/cgit/notYetAnotherWiki/about/">notYetAnotherWiki</a> version 0.0. &nbsp;', 18 history = '', footer = 'Powered by <a href="https://sledjhamr.org/cgit/notYetAnotherWiki/about/">notYetAnotherWiki</a> version 0.0. &nbsp;',
18} 19}