mirror of
https://github.com/tiddly-gittly/TidGi-Desktop.git
synced 2025-12-30 13:52:05 -08:00
15 lines
863 B
HTML
Executable file
15 lines
863 B
HTML
Executable file
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<title>{% if page.title %}{{ page.title | escape }} - {{ site.title | escape }}{% else %}{{ site.title | escape }} - Run Web Apps like Real Apps{% endif %}</title>
|
|
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
|
|
<link rel="stylesheet" href="{{ '/assets/main.css' | relative_url }}">
|
|
<link rel="canonical" href="{{ page.url | replace:'index.html','' | absolute_url }}">
|
|
<link rel="shortcut icon" href="{{ '/images/favicon.png' | relative_url }}" type="image/png">
|
|
<script src="https://kit.fontawesome.com/dd585e114a.js"></script>
|
|
{% if jekyll.environment == 'production' and site.google_analytics %}
|
|
{% include google-analytics.html %}
|
|
{% endif %}
|
|
</head>
|