35 lines
1 KiB
HTML
35 lines
1 KiB
HTML
---
|
|
---
|
|
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>{{ site.title }}</title>
|
|
<link href="/assets/styles.css" rel="stylesheet" type="text/css">
|
|
</head>
|
|
<body>
|
|
<div class="container-lg p-responsive">
|
|
<h1>{{ site.title }}</h1>
|
|
<p>{{ site.description }}</p>
|
|
<p class="text-bold">{{ site.github.owner.login }}</p>
|
|
<img src="{{ site.github.owner.avatar_url }}">
|
|
</div>
|
|
|
|
<ul>
|
|
{% for repository in site.github.public_repositories limit: 4 %}
|
|
<li>[{{ repository.name }}]({{ repository.html_url }})</li>
|
|
{% endfor %}
|
|
</ul>
|
|
|
|
<script src="https://unpkg.com/github-calendar@latest/dist/github-calendar.min.js"
|
|
></script>
|
|
<link rel="stylesheet" href="https://unpkg.com/github-calendar@latest/dist/github-calendar-responsive.css" />
|
|
|
|
<div class="container-lg p-responsive">
|
|
<div class="calendar"></div>
|
|
</div>
|
|
<script>
|
|
GitHubCalendar(".calendar", "{{ site.github.owner.login }}", { responsive: true });
|
|
</script>
|
|
</body>
|
|
</html>
|