This repository has been archived on 2024-02-11. You can view files and clone it, but cannot push or open issues or pull requests.
sitio/_includes/base.hbs

20 lines
736 B
Handlebars
Raw Normal View History

2023-12-11 06:38:04 +00:00
<!doctype html>
2023-11-12 09:37:38 +00:00
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
2023-12-11 06:50:47 +00:00
<title>{{title}}</title>
<meta name="description" content="{{description}}" />
2023-11-12 09:37:38 +00:00
<meta name="author" content="Nulo" />
2023-12-11 06:38:04 +00:00
<meta property="og:title" content="{{title}}" />
2023-12-11 06:47:14 +00:00
<meta property="og:description" content="{{description}}" />
2023-11-12 09:37:38 +00:00
<meta property="og:type" content="website" />
<meta property="og:url" content="https://nulo.ar{{{page.url}}}" />
<meta property="og:image" content="/cowboy.svg" />
2023-12-11 06:47:14 +00:00
<meta content="index, follow" name="robots" />
2023-11-12 09:37:38 +00:00
<link rel="stylesheet" href="/drip.css" />
<link rel="icon" href="/cowboy.svg" />
</head>
{{{content}}}
2023-12-11 06:47:14 +00:00
</html>