Copied starter Meteor App files.
Cut and paste of the BasicMeteorApp.
This commit is contained in:
29
imports/ui/layouts/Public.html
Normal file
29
imports/ui/layouts/Public.html
Normal file
@@ -0,0 +1,29 @@
|
||||
<template name="Public">
|
||||
{{> sAlert}}
|
||||
<div id="publicBody">
|
||||
<div id="page">
|
||||
<div id="menu"><!-- Note: Comment out spacing between the elements since the browser will interpret the spaces as characters to be displayed.
|
||||
--><a href="/Home">Home</a><!--
|
||||
--></div>
|
||||
<div id="links">
|
||||
<!-- Note: Comment out spacing between the elements since the browser will interpret the spaces as characters to be displayed. -->
|
||||
<a id="linkFacebook" href="" target='_blank' rel="nofollow"></a><!--
|
||||
--><a id="linkGoogle" href="" target='_blank' rel="nofollow"></a><!--
|
||||
--><a id="linkTwitter" href="" target='_blank' rel="nofollow"></a>
|
||||
</div>
|
||||
<div id="menuBackground"></div> <!-- A spacer between the menu and the header image. -->
|
||||
<div id="head">
|
||||
<!-- Logo click takes the user back to home -->
|
||||
<div id="logo" onclick="window.location='/Home'"></div>
|
||||
</div>
|
||||
<div id="content">
|
||||
{{> Template.dynamic template=content}}
|
||||
</div>
|
||||
</div>
|
||||
<!-- footer lines -->
|
||||
<div id="footer">© 2018 Just Me | My Email <a href="mailto:me@somewhere.com">me@somewhere.com</a></div>
|
||||
<div id="designedBy" style="">
|
||||
Web Site By: <a href="http://somewhere.com" style="font-weight: normal" target="_blank">Your Company</a>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
Reference in New Issue
Block a user