Files
web2.0-backend/infoscreen/static/html/sosso.html
T
Jan Tuomi 10b731961a Fix infoscreen Sössö slide styles
The slide is responsive and works also on other screen sizes than
1920x1080. Fixes #2.
2017-01-04 13:23:22 +02:00

21 lines
689 B
HTML

<link rel="stylesheet" href="/static/css/sosso.css">
<div ng-controller="SossoController">
<div id="header">
<img id="header-image" src="/static/img/sossoheader.png" >
</div>
<div id="container" ng-repeat="post in data.posts">
<div class="article-row row">
<div class="article-col col-md-6">
<img class="thumbnail" ng-src="{{ post.thumbnail_images.medium.url }}">
</div>
<div>
<h1 class="col-md-6">
<div class="article-title-col">
{{ post.title }}
</div>
</h1>
</div>
</div>
</div>
</div>