ligilo/templates/index.html

30 lines
1.2 KiB
HTML
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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