mirror of
https://github.com/wez/wezterm.git
synced 2024-11-24 07:46:59 +03:00
84 lines
3.2 KiB
HTML
84 lines
3.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="{{ site.lang | default: "en-US" }}">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
{% seo %}
|
|
<link rel="stylesheet" href="{{ "/assets/css/style.css?v=" | append: site.github.build_revision | relative_url }}">
|
|
<style>
|
|
.btn {
|
|
-moz-box-shadow:inset 0px 1px 0px 0px #e184f3;
|
|
-webkit-box-shadow:inset 0px 1px 0px 0px #e184f3;
|
|
box-shadow:inset 0px 1px 0px 0px #e184f3;
|
|
background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #c123de), color-stop(1, #a20dbd));
|
|
background:-moz-linear-gradient(top, #c123de 5%, #a20dbd 100%);
|
|
background:-webkit-linear-gradient(top, #c123de 5%, #a20dbd 100%);
|
|
background:-o-linear-gradient(top, #c123de 5%, #a20dbd 100%);
|
|
background:-ms-linear-gradient(top, #c123de 5%, #a20dbd 100%);
|
|
background:linear-gradient(to bottom, #c123de 5%, #a20dbd 100%);
|
|
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#c123de', endColorstr='#a20dbd',GradientType=0);
|
|
background-color:#c123de;
|
|
-moz-border-radius:6px;
|
|
-webkit-border-radius:6px;
|
|
border-radius:6px;
|
|
border:1px solid #a511c0;
|
|
display:inline-block;
|
|
cursor:pointer;
|
|
color:#ffffff;
|
|
font-family:Arial;
|
|
font-size:15px;
|
|
font-weight:bold;
|
|
padding:6px 24px;
|
|
text-decoration:none;
|
|
text-shadow:0px 1px 0px #9b14b3;
|
|
}
|
|
.btn:hover {
|
|
background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #a20dbd), color-stop(1, #c123de));
|
|
background:-moz-linear-gradient(top, #a20dbd 5%, #c123de 100%);
|
|
background:-webkit-linear-gradient(top, #a20dbd 5%, #c123de 100%);
|
|
background:-o-linear-gradient(top, #a20dbd 5%, #c123de 100%);
|
|
background:-ms-linear-gradient(top, #a20dbd 5%, #c123de 100%);
|
|
background:linear-gradient(to bottom, #a20dbd 5%, #c123de 100%);
|
|
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#a20dbd', endColorstr='#c123de',GradientType=0);
|
|
background-color:#a20dbd;
|
|
}
|
|
.btn:active {
|
|
position:relative;
|
|
top:1px;
|
|
}
|
|
|
|
</style>
|
|
|
|
</head>
|
|
<body>
|
|
<div class="container-lg px-3 my-5 markdown-body">
|
|
{% if site.title and site.title != page.title %}
|
|
<h1><a href="{{ "/" | absolute_url }}">{{ site.title }}</a></h1>
|
|
{% endif %}
|
|
|
|
{{ content }}
|
|
|
|
<div class="footer border-top border-gray-light mt-5 pt-3 text-right text-gray">
|
|
<a href="{{ site.github.repository_url }}">{{ site.github.repository_name }}</a> is maintained by <a href="{{ site.github.owner_url }}">{{ site.github.owner_name }}</a>.
|
|
</div>
|
|
</div>
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/anchor-js/4.1.0/anchor.min.js"
|
|
integrity="sha256-lZaRhKri35AyJSypXXs4o6OPFTbTmUoltBbDCbdzegg="
|
|
crossorigin="anonymous"></script>
|
|
<script>anchors.add();</script>
|
|
{% if site.google_analytics %}
|
|
<script>
|
|
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
|
|
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
|
|
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
|
|
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
|
|
ga('create', '{{ site.google_analytics }}', 'auto');
|
|
ga('send', 'pageview');
|
|
</script>
|
|
{% endif %}
|
|
</body>
|
|
</html>
|
|
|