|
Revision 5, 0.8 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 : ShowPods.cfm |
|---|
| 5 | Author : Scott Pinkston |
|---|
| 6 | Created : October 14, 2006 |
|---|
| 7 | Last Updated : |
|---|
| 8 | History : |
|---|
| 9 | ---> |
|---|
| 10 | |
|---|
| 11 | <cfset dir = expandPath("../includes/pods")> |
|---|
| 12 | |
|---|
| 13 | <cfif fileExists(dir & "/#url.pod#")> |
|---|
| 14 | <cfoutput> |
|---|
| 15 | <html> |
|---|
| 16 | <head> |
|---|
| 17 | <title>Pod</title> |
|---|
| 18 | <link rel="stylesheet" href="#application.rooturl#/includes/layout.css" type="text/css" /> |
|---|
| 19 | <link rel="stylesheet" href="#application.rooturl#/includes/style.css" type="text/css" /> |
|---|
| 20 | </head> |
|---|
| 21 | <body> |
|---|
| 22 | <div style="background:white;"> |
|---|
| 23 | <div id="menu" style="background:white;"> |
|---|
| 24 | </cfoutput> |
|---|
| 25 | <cfinclude template="../includes/pods/#url.pod#"> |
|---|
| 26 | <cfoutput> |
|---|
| 27 | </div> |
|---|
| 28 | </div> |
|---|
| 29 | </body> |
|---|
| 30 | </html> |
|---|
| 31 | </cfoutput> |
|---|
| 32 | |
|---|
| 33 | </cfif> |
|---|
| 34 | |
|---|
| 35 | <cfsetting enablecfoutputonly="false"> |
|---|