mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-05-17 12:20:09 +01:00
8e7345eb2e
* More admin verb conversion & Secrets panel overhaul * convert to tsx * Rest of the secrets update * Update secrets.dm * ummm --------- Co-authored-by: Kashargul <144968721+Kashargul@users.noreply.github.com>
6 lines
392 B
Plaintext
6 lines
392 B
Plaintext
#define HTML_SKELETON_INTERNAL(head, body) \
|
|
"<!DOCTYPE html><html><head><meta http-equiv='Content-Type' content='text/html; charset=UTF-8'><meta http-equiv='X-UA-Compatible' content='IE=edge'>[head]</head><body>[body]</body></html>"
|
|
|
|
#define HTML_SKELETON_TITLE(title, body) HTML_SKELETON_INTERNAL("<title>[title]</title>", body)
|
|
#define HTML_SKELETON(body) HTML_SKELETON_INTERNAL("", body)
|