aboutsummaryrefslogtreecommitdiffhomepage
path: root/tpl/default/daily.html
blob: 5e038c393822105287678394fa6e1b9ab4211d77 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
<!DOCTYPE html>
<html{if="$language !== 'auto'"} lang="{$language}"{/if}>
<head>
  {include="includes"}
</head>
<body>
{include="page.header"}

<div class="pure-g">
  <div class="pure-u-1 pure-alert pure-alert-success tag-sort">
    <a href="{$base_path}/daily?day">{'Daily'|t}</a>
    <a href="{$base_path}/daily?week">{'Weekly'|t}</a>
    <a href="{$base_path}/daily?month">{'Monthly'|t}</a>
  </div>
</div>


<div class="pure-g">
  <div class="pure-u-lg-1-6 pure-u-1-24"></div>
  <div class="pure-u-lg-2-3 pure-u-22-24 page-form page-visitor" id="daily">
    <h2 class="window-title">
      {$localizedType} Shaarli
      <a href="{$base_path}/daily-rss?{$type}"
         title="{function="t('1 RSS entry per :type', '', 1, 'shaarli', [':type' => t($type)])"}"
      >
        <i class="fa fa-rss"></i>
      </a>
    </h2>

    <div id="plugin_zone_start_daily" class="plugin_zone">
      {loop="$plugin_start_zone"}
        {$value}
      {/loop}
    </div>

    <div class="daily-about">

      <div class="pure-g">
        <div class="pure-u-lg-1-3 pure-u-1 center">
          {if="$previousday"}
            <a href="{$base_path}/daily?{$type}={$previousday}">
              <i class="fa fa-arrow-left"></i>
              {function="t('Previous :type', '', 1, 'shaarli', [':type' => t($type)], true)"}
            </a>
          {/if}
        </div>
        <div class="daily-desc pure-u-lg-1-3 pure-u-1 center">
          {function="t('All links of one :type in a single page.', '', 1, 'shaarli', [':type' => t($type)])"}
        </div>
        <div class="pure-u-lg-1-3 pure-u-1 center">
          {if="$nextday"}
            <a href="{$base_path}/daily?{$type}={$nextday}">
              {function="t('Next :type', '', 1, 'shaarli', [':type' => t($type)], true)"}
              <i class="fa fa-arrow-right"></i>
            </a>
          {/if}
        </div>
      </div>
      <div>
        <h3 class="window-subtitle">
          {$dayDesc}
        </h3>

        <div id="plugin_zone_about_daily" class="plugin_zone">
          {loop="$daily_about_plugin"}
            {$value}
          {/loop}
        </div>
      </div>
    </div>


    {if="$linksToDisplay"}
      <div class="pure-g">
        {loop="$cols"}
          {if="isset($value[0])"}
            <div class="pure-u-lg-1-3 pure-u-1">
              {loop="value"}
                {$link=$value}
                <div class="daily-entry">
                  <div class="daily-entry-title center">
                    <a href="{$base_path}/?{$link.shorturl}" title="{'Permalink'|t}">
                      <i class="fa fa-link"></i>
                    </a>
                    <a href="{$link.real_url}">{$link.title}</a>
                  </div>
                  {if="$thumbnails_enabled && !empty($link.thumbnail)"}
                    <div class="daily-entry-thumbnail">
                      <img data-src="{$root_path}/{$link.thumbnail}#" class="b-lazy"
                           src=""
                           alt="thumbnail" width="{$thumbnails_width}" height="{$thumbnails_height}" />
                    </div>
                  {/if}
                  <div class="daily-entry-description">{$link.formatedDescription}</div>
                  {if="$link.tags"}
                    <div class="daily-entry-tags center">
                      {loop="link.taglist"}
                        <span class="label label-tag">
                          {$value}
                        </span>
                      {/loop}
                    </div>
                  {/if}
                  <div class="dailyEntryFooter clear">
                    {loop="$link.link_plugin"}
                      {$value}
                    {/loop}
                  </div>
                </div>
              {/loop}
            </div>
          {/if}
        {/loop}
      </div>
    {else}
      <div class="dailyNoEntry">No articles on this day.</div>
    {/if}

    <div class="clear"></div>

    <div id="plugin_zone_end_picwall" class="plugin_zone">
      {loop="$plugin_end_zone"}
        {$value}
      {/loop}
    </div>
  </div>
</div>
{include="page.footer"}
<script src="{$asset_path}/js/thumbnails.min.js?v={$version_hash}#"></script>
</body>
</html>