1
This repository has been archived on 2021-11-25. You can view files and clone it, but cannot push or open issues or pull requests.
Project_Steam_Tracker/templates/app.html

41 lines
1.7 KiB
HTML

<html>
<head>
<title>App Info</title>
<link href="{{ url_for('static', filename='css/bootstrap.min.css') }}" rel="stylesheet">
</head>
<body>
{% include "t-navbar.html" %}
<div class="container">
<div class="row">
<div class="col-md-12">
<h1>{{ data['data']['name'] }}</h1>
<p>fffff</p>
</div>
</div>
<div class="row">
<div class="col-md-6">
<div id="carousel" class="carousel slide" data-ride="carousel">
<div class="carousel-inner">
{% set firstpic = True %}
{% for x in data['data']['screenshots'] %}
<div class="carousel-item {% if firstpic == True %}active{% endif %}">
<img class="d-block w-100" src="{{ x['path_full'] }}">
</div>
{% set firstpic = False %}
{% endfor %}
</div>
<a class="carousel-control-prev" href="#carousel" role="button" data-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
</a>
<a class="carousel-control-next" href="#carousel" role="button" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
</a>
</div>
</div>
<div class="col-md-6">
</div>
</div>
</div>
</body>
</html>