16 lines
716 B
HTML
16 lines
716 B
HTML
<link rel="stylesheet" href="/static/css/sosso.css">
|
|
<div ng-controller="SossoController">
|
|
<div style="height: 320px; width:1920px;background-color:#7c1330;">
|
|
<img src="/static/img/sossoheader.png" >
|
|
</div>
|
|
<div id="container" ng-repeat="post in data.posts">
|
|
<div class="row" style="height:260px;">
|
|
<div class="col-md-4" style="max-height: 200px;">
|
|
<img ng-src="{{ post.thumbnail_images.medium.url }}" style="max-height: 200px;">
|
|
</div>
|
|
<div><h1 class="col-md-6" style="font-size:48px;">{{ post.title }}</h1></div>
|
|
<div class="bottom-align-text col-md-6" style="font-size:24px">{{ post.date }}</div>
|
|
</div>
|
|
</div>
|
|
</div>
|