369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
|
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
|
-
-
+
+
|
** header template lacks a <body> tag, then all of the following is
** prepended.
*/
static char zDfltHeader[] =
@ <html>
@ <head>
@ <base href="$baseurl/$current_page" />
@ <meta http-equiv="Content-Security-Policy-xxx" \
@ content="default-src 'self' 'unsafe-inline'" />
@ <meta http-equiv="Content-Security-Policy" \
@ content="default-src 'self' data: 'unsafe-inline'" />
@ <title>$<project_name>: $<title></title>
@ <link rel="alternate" type="application/rss+xml" title="RSS Feed" \
@ href="$home/timeline.rss" />
@ <link rel="stylesheet" href="$stylesheet_url" type="text/css" \
@ media="screen" />
@ </head>
@ <body>
|