File: index.html

package info (click to toggle)
elfeed 3.4.2-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 412 kB
  • sloc: lisp: 4,558; makefile: 67; javascript: 60
file content (70 lines) | stat: -rw-r--r-- 2,170 bytes parent folder | download | duplicates (4)
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
<!DOCTYPE html>
<html ng-app>
  <head>
    <title>Elfeed Web</title>
    <link rel="stylesheet" href="//cdn.jsdelivr.net/foundation/4.3.1/css/foundation.min.css"/>
    <link rel="stylesheet" href="elfeed.css"/>
    <script src="//ajax.googleapis.com/ajax/libs/angularjs/1.0.7/angular.min.js"></script>
    <script src="//cdnjs.cloudflare.com/ajax/libs/URI.js/1.7.2/URI.min.js"></script>
    <script src="elfeed.js"></script>
  </head>
  <body>

    <div class="row">
      <div class="twelve columns centered panel radius">
        <h4>Emacs Elfeed</h4>
      </div>
    </div>

    <div class="row panel" ng-controller="SearchCtrl">

      <div class="large-5 columns">
        <div>

          <form ng-submit="update(true)">
            <input id="query" type="text"
                   ng-model="query" ng-change="update()"/>
          </form>
          <button class="button small" ng-click="markAllRead()">
            Mark All As Read
          </button>

          <ul class="no-bullet">
            <li class="entry" ng-repeat="entry in entries">
              <img class="favicon" src="{{entry.favicon}}">
              <span class="feed-title">
                {{entry.feed.title}}
              </span>
              <time class="secondary label">
                {{entry.dateString}}
              </time>
              <a class="title" href="#" ng-click="show(entry)">
                <span class="{{entry.classes}}">{{entry.title}}</span>
              </a>
            </li>
            <span class="no-results" ng-show="!entries.length">
              No results.
            </span>
          </ul>
        </div>
      </div>

      <div class="large-7 columns">
        <div class="row" ng-show="selected && selected.content">
          <div class="twelve columns">
            <h4 class="subheader">
              <a href="{{selected.link}}" target="_blank">
                {{selected.title}}
              </a>
            </h4>
            <iframe class="twelve columns panel"
                    sandbox src="/elfeed/content/{{selected.content}}">
            </iframe>
          </div>
        </div>
      </div>

    </div>

  </body>
</html>