ligilo/templates/index.html

30 lines
1.2 KiB
HTML
Raw Normal View History

2021-04-21 18:31:53 +02:00
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="UTF-8">
2021-04-21 18:45:59 +02:00
<title>{{ section.title }} | {{ config.title }}</title>
2021-04-26 10:26:11 +02:00
<link rel="icon" href="img/{{ config.extra.icon }}" type="image/x-icon">
2021-04-21 18:31:53 +02:00
<link rel="stylesheet" href="{{ config.extra.style }}">
2021-04-21 23:36:14 +02:00
<meta property="og:title" content="{{ section.title }} | {{ config.title }}">
2021-04-21 18:31:53 +02:00
<meta property="og:type" content="website">
2021-04-26 10:26:11 +02:00
<meta property="og:image" content="{{ config.base_url }}/img/{{ config.extra.icon }}">
2021-04-21 18:31:53 +02:00
<meta property="og:description" content="{{ config.description }}">
<meta property="og:site_name" content="{{ config.title }}">
</head>
<body>
2021-04-26 10:26:11 +02:00
<img src="img/{{ config.extra.icon }}" alt="ligilo icon" width="10%">
2021-04-21 18:31:53 +02:00
<div id="links">
2021-04-26 10:26:11 +02:00
2021-04-21 18:31:53 +02:00
</div>
<footer>
2021-04-21 20:08:26 +02:00
Powered by <a href="https://getzola.org" target="_blank">Zola</a> / <a href="https://github.com/june-coloc/ligilo" target="_blank">ligilo</a>
2021-04-26 10:26:11 +02:00
<br>ligilos icon is "link" by Milton Raposo C. Rêgo Jr. from the <a href="https://thenounproject.com" target="_blank">Noun Project</a>
2021-04-21 18:31:53 +02:00
</footer>
</body>
</html>