Add scripts to create myops-getqueryview:
[myops.git] / web / query / templates / index.html
diff --git a/web/query/templates/index.html b/web/query/templates/index.html
new file mode 100644 (file)
index 0000000..4ca7001
--- /dev/null
@@ -0,0 +1,49 @@
+<!DOCTYPE html>
+<html>
+  <head>
+    <title>{{ title }}</title>
+    <link rel="stylesheet" href="../../style/screen.css" type="text/css"/>
+    <link rel="alternate" type="application/atom+xml" 
+      title="Atom Feed" href="{{ feedPath }}"/>
+  </head>
+  <body>
+    {{>header}}
+    <div id="tagcloud"></div>
+    <div id="content">
+      <h1>Recently...</h1>
+      <ul id="posts">
+        {{#posts}}
+          <li>
+            <h3><a href="{{ link }}">{{ title }}</a></h3>
+            {{#has_tags}}
+              <div class="tags">
+                {{#tags}}
+                  <a href="{{link}}">{{tag}}</a>
+                {{/tags}}
+              </div>
+            {{/has_tags}}
+            <div class="by">
+              <span class="date">{{ date }}</span> 
+              by {{author}}
+            </div>
+          </li>
+        {{/posts}}
+    </ul>
+    <div class="paginate">
+      <a href="{{ older }}">older posts</a>
+      <a href="{{5}}">5</a>
+      <a href="{{10}}">10</a>
+      <a href="{{25}}">25</a>      
+    </div>
+  </div>
+</body>
+{{>scripts}}
+<script type="text/javascript" charset="utf-8">
+  $.couch.app(function() {
+    $("#tagcloud").evently(this.ddoc.evently.tagcloud, this);
+  }, {
+    db : "{{db}}",
+    design : "{{design}}"
+  });
+</script>
+</html>
\ No newline at end of file