|
Revision 5, 0.7 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 : rss.cfm |
|---|
| 5 | Author : Raymond Camden |
|---|
| 6 | Created : October 29, 2003 |
|---|
| 7 | Last Updated : February 28, 2007 |
|---|
| 8 | History : history cleared for 4.0 |
|---|
| 9 | : Nofollow/noindex (rkc 2/28/07) |
|---|
| 10 | Purpose : Display rss box |
|---|
| 11 | ---> |
|---|
| 12 | |
|---|
| 13 | <cfset rssURL = application.rootURL & "/rss.cfm"> |
|---|
| 14 | |
|---|
| 15 | <cfmodule template="../../tags/podlayout.cfm" title="RSS"> |
|---|
| 16 | |
|---|
| 17 | <cfoutput> |
|---|
| 18 | <p class="center"> |
|---|
| 19 | <a href="#rssURL#?mode=full" rel="noindex,nofollow"><img src="#application.rootURL#/images/rssbutton.gif" border="0"></a><br> |
|---|
| 20 | </p> |
|---|
| 21 | </cfoutput> |
|---|
| 22 | |
|---|
| 23 | </cfmodule> |
|---|
| 24 | |
|---|
| 25 | <cfsetting enablecfoutputonly=false> |
|---|