Simple RSS Reader inspired by Gxxgle Reader
リビジョン | 569f667de3dd4dd6e531c830318fbdb8309b7a61 (tree) |
---|---|
日時 | 2014-06-16 19:32:00 |
作者 | hylom <hylom@hylo...> |
コミッター | hylom |
fix to use bootstrap 3.1.1 via CDN
@@ -12,15 +12,14 @@ Grrreader is Web-based RSS reader application. Grrreader has | ||
12 | 12 | Gxxgle-Reader-like AJAX based UI, independent RSS feed fetcher, |
13 | 13 | and minimal feature to check RSSs are implemented. |
14 | 14 | |
15 | -Grrreader uses Python to fetch RSS feed, and Node.js to build HTTP Server | |
16 | -and Web UI. | |
15 | +Grrreader uses Python to fetch RSS feed, and Node.js to build HTTP Server and Web UI. | |
17 | 16 | |
18 | 17 | |
19 | 18 | Requires |
20 | 19 | -------- |
21 | 20 | * Python 2.7.x |
22 | 21 | * Node.js 0.10.x |
23 | - * Some python modules: "feedparser", "dateutil.parser", "mysql.connector" | |
22 | + * Some Python modules: "feedparser", "dateutil.parser", "mysql.connector" | |
24 | 23 | * Some node.js modules: defined in client/package.json and "forever" |
25 | 24 | * MySQL |
26 | 25 |
@@ -3,11 +3,13 @@ html | ||
3 | 3 | head |
4 | 4 | title= title |
5 | 5 | link(rel='stylesheet', href='/css/style.css') |
6 | - link(rel='stylesheet', href='/css/bootstrap.min.css') | |
6 | + // link(rel='stylesheet', href='/css/bootstrap.min.css') | |
7 | + link(rel='stylesheet', href='//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css') | |
7 | 8 | |
8 | 9 | body |
9 | 10 | script(src="http://code.jquery.com/jquery.js") |
10 | - script(src="/js/bootstrap.min.js") | |
11 | + //script(src="/js/bootstrap.min.js") | |
12 | + script(src="//netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js") | |
11 | 13 | script(src="/js/hogan-2.0.0.min.js") |
12 | 14 | script(src="/js/grdc.js") |
13 | 15 | #header |