Initial commit

This commit is contained in:
2019-03-05 00:07:59 +09:00
commit e5d13f19ad
14 changed files with 15042 additions and 0 deletions
+30
View File
@@ -0,0 +1,30 @@
<!DOCTYPE html>
<html>
<head>
<title>Welcome!</title>
<link href="/static/css/bootstrap.css" rel=stylesheet>
</head>
<body>
<div class="container">
<div class="row">
<img src="/static/img/profile.jpg" alt="profile-picture" class="rounded">
<h1>Photlog</h1>
</div>
<div class="row">
<div class="col text-center">
<img src="/media/{{.Media}}" alt="{{.Title}}" class="rounded">
</div>
<div class="col">
<h3 class="text-center">{{.Title}}</h3>
<h5 class="text-center">{{.Subtitle}}</h5>
<p>{{.Description}}.</p>
</div>
</div>
</div>
<script src="/static/js/bootstrap.js"></script>
</body>
</html>