fix: Add favicon
This commit is contained in:
parent
0206622f10
commit
b8005336de
@ -1,10 +1,11 @@
|
|||||||
<!doctype html>
|
<!doctype html>
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8" />
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||||
<title>{{ page.title }}</title>
|
<title>{{ page.title }}</title>
|
||||||
<link href="/assets/css/index.css" rel="stylesheet">
|
<link href="/assets/css/index.css" rel="stylesheet" />
|
||||||
|
<link rel="shortcut icon" href="/assets/img/favicon.ico" sizes="32x32" />
|
||||||
</head>
|
</head>
|
||||||
<body class="min-h-screen h-full flex flex-col">
|
<body class="min-h-screen h-full flex flex-col">
|
||||||
{% include header.html %}
|
{% include header.html %}
|
||||||
|
BIN
assets/img/favicon.ico
Normal file
BIN
assets/img/favicon.ico
Normal file
Binary file not shown.
After Width: | Height: | Size: 4.2 KiB |
@ -20,6 +20,7 @@
|
|||||||
buildInputs = with pkgs; [
|
buildInputs = with pkgs; [
|
||||||
tailwindWithTypography
|
tailwindWithTypography
|
||||||
jekyll
|
jekyll
|
||||||
|
imagemagick
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -16,6 +16,6 @@ stdenv.mkDerivation {
|
|||||||
|
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
mkdir -p $out/var/www/
|
mkdir -p $out/var/www/
|
||||||
mv -vr _site/ $out/var/www/website
|
mv _site/ $out/var/www/website
|
||||||
'';
|
'';
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user