53 lines
1.5 KiB
HTML
53 lines
1.5 KiB
HTML
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no">
|
|
|
|
<link rel="stylesheet" href="/styles/photobook.css">
|
|
|
|
<title>My Photobook</title>
|
|
</head>
|
|
|
|
<body>
|
|
<main>
|
|
|
|
<div class="paper">
|
|
<img src="/images/page2.avif" id="background">
|
|
|
|
<div class="controlbox">
|
|
<a {% if previousDisabled == '' : %} href="{{url_for( request.endpoint, **request.view_args)}}&--" {%endif%} class="{{ previousDisabled }}">↩️ Previous Page</a>
|
|
<a class="padding" href="{{ url_for('homepage') }}">🚪 Leave</a>
|
|
<a class="padding" href="{{ url_for( request.endpoint, **request.view_args) }}&rnd">🔄 Random Page</a>
|
|
<a {% if nextDisabled == '' : %} href="{{url_for( request.endpoint, **request.view_args)}}&++" {%endif%} class="{{ nextDisabled }}">Next Page ↪️</a>
|
|
</div>
|
|
|
|
<div class="page">
|
|
<div class="content">
|
|
{{contentLeftInsert | safe}}
|
|
</div>
|
|
|
|
<div class="infocontainer">
|
|
<p class="date">{{pageLeftDate}}</p>
|
|
<p class="description">{{pageLeftDesc | safe}}</p>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="page right">
|
|
<div class="content">
|
|
{{contentRightInsert | safe}}
|
|
</div>
|
|
|
|
<div class="infocontainer">
|
|
<p class="date">{{pageRightDate}}</p>
|
|
<p class="description">{{pageRightDesc | safe}}</p>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</main>
|
|
</body>
|
|
</html>
|