f0ckv2/views/snippets/header.html

15 lines
741 B
HTML
Raw Normal View History

2022-03-24 12:23:00 +00:00
<!doctype html>
2023-05-06 04:54:09 +00:00
<html lang="en" theme="@if(typeof theme !== "undefined"){{ theme }}@endif" res="@if(typeof fullscreen !== "undefined"){{ fullscreen == 1 ? 'fullscreen' : '' }}@endif">
2021-12-04 11:19:47 +00:00
<head>
<title>f0ck!</title>
2021-12-28 03:07:28 +00:00
<meta name="description" content="Welcome to the internet"/>
<meta property="og:image" content="/s/img/favicon.gif">
2021-12-04 11:19:47 +00:00
<link rel="icon" type="image/gif" href="/s/img/favicon.gif" />
2021-12-26 16:25:21 +00:00
<link rel="stylesheet" href="/s/css/f0ck.css?v=@mtime(/public/s/css/f0ck.css)">
2021-12-04 11:19:47 +00:00
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
2021-12-23 05:06:26 +00:00
@if(typeof item !== "undefined")<link rel="canonical" href="https://f0ck.me/{{ item.id }}" />@endif
2021-12-04 11:19:47 +00:00
</head>
<body>
@include(snippets/navbar)