remove unneeded link over company logo

This commit is contained in:
James Shiffer 2020-09-21 20:39:02 -07:00
parent 0cadc8e3f0
commit 24879d5665

View File

@ -9,11 +9,40 @@
<img height="69" width="640" src="/assets/Welcome.gif">
<marquee></marquee>
<div class="toplinks">
<a href="/Events.cfm">New Company Events</a>
<a href="/Products.cfm">Our Products</a>
<a href="/Help.cfm">Help</a>
<a href="/About.cfm">About Us</a>
<a href="/Contact.cfm">Contact Us</a>
<a href="/Sitemap.cfm">Site Map</a>
<cfif cgi.script_name IS "/Default.cfm">
<a style="font-weight: bold;" href="/">Home Page</a>
<cfelse>
<a href="/">Home Page</a>
</cfif>
<cfif cgi.script_name IS "/Events.cfm">
<a style="font-weight: bold;" href="/">Home Page</a>
<cfelse>
<a href="/Events.cfm">New Company Events</a>
</cfif>
<cfif cgi.script_name IS "/Products.cfm">
<a style="font-weight: bold;" href="/Products.cfm">Our Products</a>
<cfelse>
<a href="/Products.cfm">Our Products</a>
</cfif>
<cfif cgi.script_name IS "/Help.cfm">
<a style="font-weight: bold;" href="/Help.cfm">Help</a>
<cfelse>
<a href="/Help.cfm">Help</a>
</cfif>
<cfif cgi.script_name IS "/About/Default.cfm">
<a style="font-weight: bold;" href="/About">About Us</a>
<cfelse>
<a href="/About">About Us</a>
</cfif>
<cfif cgi.script_name IS "/Contact.cfm">
<a style="font-weight: bold;" href="/Contact.cfm">Contact Us</a>
<cfelse>
<a href="/Contact.cfm">Contact Us</a>
</cfif>
<cfif cgi.script_name IS "/Sitemap.cfm">
<a style="font-weight: bold;" href="/Sitemap.cfm">Site Map</a>
<cfelse>
<a href="/Sitemap.cfm">Site Map</a>
</cfif>
</div>
<hr>