30 lines
784 B
HTML
30 lines
784 B
HTML
<!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> |