-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathheader.cfm
52 lines (37 loc) · 1.5 KB
/
header.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
50
51
52
<!---
Creating Co. : Hostek.com
Programmed by: Kaleb L.
Creation Date: 11/15/2014
--->
<cfif FileExists('./config.cfm')>
<cfheader name="expires" value="#getHttpTimeString(now())#">
<cfheader name="pragma" value="no-cache">
<cfheader name="cache-control" value="no-cache, no-store, must-revalidate">
<script src="//code.jquery.com/jquery-1.11.0.min.js"></script>
<script src="//code.jquery.com/jquery-migrate-1.2.1.min.js"></script>
<!--- Latest compiled and minified CSS --->
<link rel="stylesheet" href="./css/bootstrap.min.css">
<!--- Optional theme --->
<link rel="stylesheet" href="./css/bootstrap-theme.min.css">
<!--- Latest compiled and minified JavaScript --->
<script src="./js/bootstrap.min.js"></script>
<!--- Google Fonts API include --->
<link href='http://fonts.googleapis.com/css?family=Lobster|Titillium+Web:400,300,600,700' rel='stylesheet' type='text/css'>
<!--- CSS includes --->
<link href="./css/style.css" type="text/css" rel="stylesheet" />
<!--- The index file holds the main header information --->
<h1 class="logo">SatyrMailer</h1>
<!--- Include for the global configuration file --->
<cfinclude template="config.cfm" >
<cfinclude template="./inc/inc_secure.cfm" >
<!--- Main navagation bar --->
<div class="nav">
<a href="index.cfm">Home</a>
<a href="main.cfm">Mailer</a>
<a href="templates.cfm">Templates</a>
<a href="subscribers.cfm">Subscribers</a>
<a href="access.cfm?killSession">Log Out</a>
</div>
<cfelse>
<cflocation url="install.cfm" >
</cfif>