diff --git a/main.c b/main.c index 7758bfc..d5f78d4 100644 --- a/main.c +++ b/main.c @@ -26,23 +26,22 @@ WITH REGARD TO THIS SOFTWARE. "verify my signature: signing public key
"\ "send me an encrypted message: encryption public key" #define CONTACT "contact: nilix@nilfm.cc (keys)
" -#define FOOTER1 "visit the nilFM hack lab "\ "visit me on Mastodon "\ "visit me on Vimeo " -#define FOOTER2 "visit the Webring
"\ - " "\ + "visit the Webring
" +#define LICENSE "CC-BY-NC 4" #define SITEROOT "../www/" #define MAINCSS "/new.css" #define FRONTCSS "/front.css" -#define LICENSE "" -#define SOURCE "" + /* clang-format on */ @@ -347,8 +346,8 @@ int fpfooter(FILE* f, char* name, char* path) { fpedited(f, path); fputs(CONTACT, f); } - fputs(FOOTER1, f); - fputs(FOOTER2, f); + fputs(FOOTER, f); + fputs(LICENSE, f); fputs("", f); return 1; }