add feed link to app.html
This commit is contained in:
parent
7b3ae4dea8
commit
453dad1e0d
@ -6,6 +6,7 @@
|
|||||||
<link rel="preload" href="/Baskerville-Regular.woff2" as="font" type="font/woff2" />
|
<link rel="preload" href="/Baskerville-Regular.woff2" as="font" type="font/woff2" />
|
||||||
<link rel="stylesheet" href="/style.css" />
|
<link rel="stylesheet" href="/style.css" />
|
||||||
<link rel="icon" href="%sveltekit.assets%/favicon.png" />
|
<link rel="icon" href="%sveltekit.assets%/favicon.png" />
|
||||||
|
<link rel="alternate" type="application/atom+xml" href="/feed">
|
||||||
<meta name="viewport" content="width=device-width" />
|
<meta name="viewport" content="width=device-width" />
|
||||||
%sveltekit.head%
|
%sveltekit.head%
|
||||||
</head>
|
</head>
|
||||||
|
@ -1,7 +1,5 @@
|
|||||||
<style>
|
<style>
|
||||||
.header {
|
.header {
|
||||||
grid-column-start: 1;
|
|
||||||
grid-column-end: 4;
|
|
||||||
background-color: #4f5f68;
|
background-color: #4f5f68;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -13,10 +11,10 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
nav a {
|
nav a {
|
||||||
|
color: white;
|
||||||
width: 8rem;
|
width: 8rem;
|
||||||
min-width: 6rem;
|
min-width: 6rem;
|
||||||
font-size: 1.5rem;
|
font-size: 1.5rem;
|
||||||
color: white;
|
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
padding: 0.25rem 0;
|
padding: 0.25rem 0;
|
||||||
|
@ -1,6 +1,8 @@
|
|||||||
import { tag, text, serialize } from '$lib/xml.js';
|
import { tag, text, serialize } from '$lib/xml.js';
|
||||||
import { postData } from '../_posts/all.js';
|
import { postData } from '../_posts/all.js';
|
||||||
|
|
||||||
|
export const prerender = true;
|
||||||
|
|
||||||
|
|
||||||
export function GET() {
|
export function GET() {
|
||||||
return new Response(renderFeed(), {
|
return new Response(renderFeed(), {
|
||||||
|
@ -74,10 +74,6 @@ p {
|
|||||||
margin-bottom: 1rem;
|
margin-bottom: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*ul, ol {
|
|
||||||
margin: 0.5rem 0;
|
|
||||||
}*/
|
|
||||||
|
|
||||||
code {
|
code {
|
||||||
background: #eee;
|
background: #eee;
|
||||||
border-radius: 0.2rem;
|
border-radius: 0.2rem;
|
||||||
@ -89,5 +85,3 @@ code {
|
|||||||
pre > code {
|
pre > code {
|
||||||
font-size: 0.8rem;
|
font-size: 0.8rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* TESTING */
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user