summaryrefslogtreecommitdiffstats
path: root/templates/part.content.explore.php
blob: e098bd9c4cf2b7cc26b21f669ae7ce09c5c446db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?php print_unescaped($this->inc('part.content.cronwarning')) ?>

<div id="explore">
    <div ng-repeat="(category, data) in Explore.sites" class="explore-section">
        <h2>{{ category }}</h2>

        <ul>
            <li ng-repeat="entry in data | orderBy:votes:true">
                <h3 ng-style="{ backgroundImage: 'url(' + entry.favicon + ')'}">
                    {{ entry.title }}
                </h3>
                <div>
                    {{ entry.description }}

                    <img ng-src="{{ entry.image }}" ng-if="entry.image">
                </div>
                <div class="explore-subscribe">
                    <button><?php p($l->t('Subscribe')) ?></button>
                </div>
            </li>
        </ul>
    </div>
</div>