diff --git a/main.c b/main.c
index 2d8cf91..7758bfc 100644
--- a/main.c
+++ b/main.c
@@ -19,11 +19,25 @@ WITH REGARD TO THIS SOFTWARE.
#define NAME "nilFM"
#define DOMAIN "https://nilfm.cc"
+#define DESC "lair of drkste aka nilix: programmer, artist, philosopher"
#define ABOUT "Derek Stevens <"\
"nilix@nilfm.cc>
"\
"artist, programmer, philosopher
"\
"verify my signature: signing public key
"\
"send me an encrypted message: encryption public key"
+#define CONTACT "contact: nilix@nilfm.cc (keys)
"
+#define FOOTER1 " "\
+ " "\
+ " "
+#define FOOTER2 "
"\
+ "CC-BY-NC 4"
#define SITEROOT "../www/"
#define MAINCSS "/new.css"
#define FRONTCSS "/front.css"
@@ -331,35 +345,10 @@ int fpfooter(FILE* f, char* name, char* path) {
fputs("", f);
return 1;
}
@@ -375,7 +364,7 @@ FILE* build(FILE* f, Lexicon* l, char* name, char* srcpath) {
""
""
"",
- "lair of drkste aka nilix: programmer, artist, philosopher");
+ DESC);
if (ismetanav(name)) {
fputs("", f);
} else {
@@ -391,9 +380,9 @@ FILE* build(FILE* f, Lexicon* l, char* name, char* srcpath) {
/* header */
fputs("", f);
if (ismetanav(name)) {
- fputs("nilFM
", f);
+ fputs("" NAME "
", f);
} else {
- fputs("", f);
+ fputs("", f);
}
fputs("", f);
@@ -409,7 +398,6 @@ FILE* build(FILE* f, Lexicon* l, char* name, char* srcpath) {
/* main */
if (!ismetanav(name)) {
fputs("\n\n", f);
- fputs("\n\n", f);
fprintf(f, "%s
", name);
if (!fpinject(f, l, srcpath))
printf(">>> Building failed: %s\n", name);