root/trunk/website/blog/includes/pods/pages.cfm @ 5

Revision 5, 0.6 kB (checked in by DanWilson, 17 years ago)

Initial Commit Of ModelGlue? Website (upgrade to blogcfc 511)

Line 
1<cfsetting enablecfoutputonly=true>
2<cfprocessingdirective pageencoding="utf-8">
3<!---
4   Name : pages.cfm
5   Author : William Haun (based on archives.cfm by Raymond Camden) (mods by Hatton)
6   Created : August 19, 2006
7   Last Updated :
8   History :
9--->
10
11<cfset pages_qry = application.page.getPages() />
12
13   
14<cfmodule template="../../tags/podlayout.cfm" title="NAVIGATION">
15        <cfoutput><a href="#application.rootURL#">Home</a><br /></cfoutput>
16
17        <cfloop query="pages_qry">
18                <cfoutput><a href="#application.rootURL#/page.cfm/#alias#">#title#</a><br /></cfoutput>
19        </cfloop>
20     
21</cfmodule>
22     
23<cfsetting enablecfoutputonly=false />
Note: See TracBrowser for help on using the browser.