-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.twig
138 lines (138 loc) · 4.97 KB
/
index.twig
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>MS&F {{ pageTitle }}</title>
<link href="/css/main.css" rel="stylesheet" type="text/css" />
<link href="/css/content.css" rel="stylesheet" type="text/css"/>
<link href="/css/form.css" rel="stylesheet" type="text/css"/>
<link href="/css/reset.css" rel="stylesheet" type="text/css"/>
{% block cssIncludes %}
{% endblock %}
</head>
<body class="homeBody">
<div id="wrapper">
<div id="topBar">
<p>
(614) 396-5970
</p>
<!--<a href=""><img src="images/arrow.png">CLIENT LOGIN</a>-->
</div>
<a href="/index.php" id="logo">
MS&F Real Estate Capital
<span>
<!-- image replacement -->
</span>
</a>
<ul class="mainNav">
<li class="home">
<a href="/index.php">HOME</a>
</li>
<li class="loan-production">
<a href="/loan-production.php">LOAN PRODUCTION</a>
</li>
<li class="recent-financings">
<a href="/recent-financings.php">RECENT FINANCINGS</a>
</li>
<li class="about">
<a href="/about.php">ABOUT</a>
</li>
<li class="key-personnel">
<a href="/key-personnel.php">KEY PERSONNEL</a>
</li>
<!-- END OF mainMenu -->
</ul>
<div class="clearfix"></div>
<div id="underBar">
<ul class="social">
<li>Connect with us
</li>
<li>
<a href="https://www.linkedin.com/company/morris-smith-&-feyh-incorporated" target="_blank"><img src="/images/linkedin-icon.png"></a>
</li>
<!--
<li>
<a href="" target="_blank"><img src="/images/twitter-icon.png"></a>
</li>
<li>
<a href="" target="_blank"><img src="/images/facebook-icon.png"></a>
</li>
-->
</ul>
<p>
Your Commercial Real Estate Lending Expert Since 1984
</p>
<div class="clearfix"></div>
</div>
<div id="contentWrapper">
{% block pageHeader %}
<h1>MS&F Management Console</h1>
{% endblock %}
<div class="flash-message">
<p>{{ flash.message }}</p>
</div>
{% block content %}
{% endblock %}
<div class="clearfix"></div>
</div>
</div>
<div id="footerWrapper">
<div id="footer">
<a href="/index.php" id="logoFooter">
<span>
<!-- image replacement -->
</span>
</a>
<!--
<form>
<input alt="submitButton" id="submitBtn" src="/images/arrow-blue.png" type="image" value="submit">
<input class="emailFooter" placeholder="enter email for company news" type="text">
</form>
-->
<ul class="socialFooter">
<li>
<a href="https://www.linkedin.com/company/morris-smith-&-feyh-incorporated" target="_blank"><img src="/images/linkedin-icon-blue.png"></a>
</li>
<!--
<li>
<a href="" target="_blank"><img src="/images/twitter-icon-blue.png"></a>
</li>
<li>
<a href="" target="_blank"><img src="/images/facebook-icon-blue.png"></a>
</li>
-->
</ul>
<p>
(614) 396-5970
</p>
</div>
<div id="underFooter">
<ul class="companyInfo">
<li>Morris, Smith & Feyh, Incorporated
</li>
<li>1900 Polaris Parkway, Suite 425
</li>
<li>Columbus, Ohio 43240
</li>
</ul>
<p>
Copyright © Morris, Smith & Feyh, Incorporated
</p>
<br><br>
<a id="adminLink" href="/msf/admin/properties/">Administration</a>
<div>
<ul id="links">
<li><a href="/">Home</a></li>
<li><a href="/loan-production.php">Loan Production</a></li>
<li><a href="/recent-financings.php">Recent Financings</a></li>
<li><a href="/about.php">About</a></li>
<li><a href="/key-personnel">Key Personnel</a></li>
</ul>
</div>
</div>
</div>
<script src="//code.jquery.com/jquery-1.7.1.min.js"></script>
{% block jsIncludes %}
{% endblock %}
</body>
</html>