-
Notifications
You must be signed in to change notification settings - Fork 13
/
feeds.cfm
49 lines (43 loc) · 1.16 KB
/
feeds.cfm
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
<!---
Name : feeds.cfm
Author : Raymond Camden
Created : July 29, 2007
Last Updated : July 29, 2007
History :
Purpose : Main feeds page.
--->
<cf_layout title="#application.siteTitle# - List of Blogs">
<script type="text/javascript">
$(document).ready(function() {
$("#tabs").tabs({
spinner: "",
select: function(event, ui) {
var tabID = "#ui-tabs-" + (ui.index + 1);
$(tabID).html("<b>Fetching Data.... Please wait....</b>");
}
});
})
</script>
<style>
#feedList a {
text-decoration: underline;
}
</style>
<cfset stats = application.entries.getStats()>
<cfoutput>
<h2>List of Blogs (#stats.totalblogs# Blogs)</h2>
<p>
Here is the complete and total list of blogs in use here. You can also access the list as an <a href="opml.cfm">OPML</a> feed.
</p>
</cfoutput>
<div id="tabs">
<ul>
<li><a href="feeds_list.cfm?r=a-c">A-C</a></li>
<li><a href="feeds_list.cfm?r=d-f">D-F</a></li>
<li><a href="feeds_list.cfm?r=g-j">G-J</a></li>
<li><a href="feeds_list.cfm?r=k-o">K-O</a></li>
<li><a href="feeds_list.cfm?r=p-t">P-T</a></li>
<li><a href="feeds_list.cfm?r=u-z">U-Z</a></li>
</ul>
</div>
</cf_layout>