Difference between revisions of "Code Documentation"
Line 41: | Line 41: | ||
<p> To create a full width page, use: </p> | <p> To create a full width page, use: </p> | ||
− | <pre> | + | <pre>{{2015CSS}} |
− | + | ||
− | + | ||
<html> | <html> | ||
Line 53: | Line 51: | ||
<div id="grayLine_Clear"></div> | <div id="grayLine_Clear"></div> | ||
− | |||
− | |||
<div id="fullWidth"> | <div id="fullWidth"> | ||
Line 62: | Line 58: | ||
<!-- start of content ----------------------------------------> | <!-- start of content ----------------------------------------> | ||
+ | |||
********** Your html should be placed here. ********** | ********** Your html should be placed here. ********** | ||
+ | |||
<!-- end of content ----------------------------------------> | <!-- end of content ----------------------------------------> | ||
Line 76: | Line 74: | ||
<p> To create a Page that will use a side menu use: </p> | <p> To create a Page that will use a side menu use: </p> | ||
− | <pre> {{2015CSS}} | + | <pre>{{2015CSS}} |
− | <html> | + | <html> |
− | + | ||
+ | |||
+ | <!-- Here is where you change the title of page --> | ||
<div id="pageTitle"> | <div id="pageTitle"> | ||
− | <h2> | + | <h2> Page Title</h2> |
</div></div> | </div></div> | ||
+ | |||
<div id="grayLine_Clear"></div> | <div id="grayLine_Clear"></div> | ||
Line 91: | Line 92: | ||
<div id="rightColumn"> | <div id="rightColumn"> | ||
− | + | ||
+ | <!-- This is the alert message. You can edit the text and remove once the page is ready--> | ||
<div id="alertMessage"> <p> Please note that all information on this page is in a draft version. | <div id="alertMessage"> <p> Please note that all information on this page is in a draft version. | ||
<br>Please check back often for details. </p></div> | <br>Please check back often for details. </p></div> | ||
+ | |||
<!-- start of content ----------------------------------------> | <!-- start of content ----------------------------------------> | ||
+ | |||
********** Your html should be placed here. ********** | ********** Your html should be placed here. ********** | ||
+ | |||
<!-- end of content ----------------------------------------> | <!-- end of content ----------------------------------------> | ||
+ | |||
</div> | </div> | ||
<div class="clear"></div> | <div class="clear"></div> |
Revision as of 21:52, 30 January 2015
This page documents and explains the CSS and HTML used in the 2015 site.
Creating a Page
To create a full width page, use:
{{2015CSS}} <html> <!-- Here is where you change the title of page --> <div id="pageTitle"> <h2> Page Title</div> <div id="grayLine_Clear"></div> <div id="fullWidth"> <!-- This is the alert message. You can edit the text and remove once the page is ready--> <div id="alertMessage"> <p> Please note that all information on this page is in a draft version. <br>Please check back often for details. </p></div> <!-- start of content ----------------------------------------> ********** Your html should be placed here. ********** <!-- end of content ----------------------------------------> </div> <div class="clear"></div> </html> {{2015Footer}}<html> </div> </html>
To create a Page that will use a side menu use:
{{2015CSS}} <html> <!-- Here is where you change the title of page --> <div id="pageTitle"> <h2> Page Title</div> <div id="grayLine_Clear"></div> <div id="leftColumn"> <!-- this is where the submenu is placed --> </div> <div id="rightColumn"> <!-- This is the alert message. You can edit the text and remove once the page is ready--> <div id="alertMessage"> <p> Please note that all information on this page is in a draft version. <br>Please check back often for details. </p></div> <!-- start of content ----------------------------------------> ********** Your html should be placed here. ********** <!-- end of content ----------------------------------------> </div> <div class="clear"></div> </html> {{2015Footer}}<html> </div> </html>