{{define "title"}}{{.Repo.Name}}{{end}}

{{define "main"}}
<div class="container is-fullhd">
  <p class="title is-1">{{.Repo.Name}}</p>
  <p class="subtitle is-5">{{ if .Repo.Description }}{{.Repo.Description}}{{else}}No description{{end}}</p>
  <hr>
  <div class="card">
    <header class="card-header">
      <p class="card-header-title">This repo is empty</p>
    </header>
    <div class="card-content">
      <div class="content">
        You've either managed to catch this repo right after I created it or I forgot to push my initial commit. Don't worry, there will be something here soon.
      </div>
    </div>
  </div>
</div>
{{end}}