?? baseheader.cfm
字號:
<cfsetting enablecfoutputonly="true" />
<!---
// ***************************************************************************************
// CLASS|TEMPLATE:
// resources\ui\baseHeader.cfm
//
// PURPOSE:
// Start of XHTML document
//
// COPYRIGHT:
// Stephen G. 'Cutter' Blades, Jr. (c) 2007
//
// LICENSE:
// Modification and use of this template, for any purpose, is strictly encouraged.
// There is no license, you are completely permitted to butcher in whatever
// fashion you see fit, just take my name off first.
//
// CHANGE LOG:
// ***************************************************************************************
// SGB [12.12.07]
// Template created
// ***************************************************************************************
--->
<cfparam name="ATTRIBUTES.Title" default="Cutter's Crossing Template" type="string" />
<cfparam name="ATTRIBUTES.Description" default="" type="string" />
<cfparam name="ATTRIBUTES.Keywords" default="" type="string" />
<cfparam name="ATTRIBUTES.Author" default="" type="string" />
<cfparam name="ATTRIBUTES.Robots" default="" type="string" />
<cfswitch expression=#thisTag.ExecutionMode#>
<cfcase value = "start">
<cfoutput>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>#ATTRIBUTES.Title#</title>
<cfif Len(ATTRIBUTES.Description)><meta name="description" content="#ATTRIBUTES.Description#" /></cfif>
<cfif Len(ATTRIBUTES.Keywords)><meta name="keywords" content="#ATTRIBUTES.Keywords#" /></cfif>
<cfif Len(ATTRIBUTES.Author)><meta name="author" content="#ATTRIBUTES.Author#" /></cfif>
<cfif Len(ATTRIBUTES.Robots)><meta name="robots" content="#ATTRIBUTES.Robots#" /></cfif>
<script language="javascript" src="/resources/js/jquery/jquery-1.2.1.min.js"></script>
</cfoutput>
</cfcase>
<cfcase value="end">
<cfoutput> </head>
<body>
<div id="mainContent"></cfoutput>
</cfcase>
</cfswitch>
<cfsetting enablecfoutputonly="false" />
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -