diff options
| author | grunfink <grunfink@noreply.codeberg.org> | 2025-05-20 23:08:49 +0200 |
|---|---|---|
| committer | grunfink <grunfink@noreply.codeberg.org> | 2025-05-20 23:08:49 +0200 |
| commit | 5059fadf34b79a9f596313b0bd859c1eb89342ae (patch) | |
| tree | 7b4936bdb5ea07c7dd617d508c487d70020f0146 | |
| parent | 2b2b66ed8d510a789fb7158ecfb2c120744eccb9 (diff) | |
| parent | bf94f6af7741f488f96deb16071707f11e692550 (diff) | |
Merge pull request 'make greetings theme adaptive; define style in header' (#397) from postscriptum/snac2:adaptive-greeting-page into master
Reviewed-on: https://codeberg.org/grunfink/snac2/pulls/397
| -rw-r--r-- | utils.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -101,8 +101,9 @@ static const char *greeting_html = "<html><head>\n" "<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n" "<link rel=\"icon\" type=\"image/x-icon\" href=\"https://%host%/favicon.ico\"/>\n" + "<style>*{color-scheme:light dark}body{margin:auto;max-width:50em}</style>\n" "<title>Welcome to %host%</title>\n</head>\n" - "<body style=\"margin: auto; max-width: 50em\">\n" + "<body>\n" "%blurb%" "<p>The following users are part of this community:</p>\n" "\n" |