-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix merge gone wrong by overwriting master with copy of branch 'rwd'
- Loading branch information
Kent Heiner
committed
Apr 27, 2019
1 parent
059bbfb
commit f82d50f
Showing
8 changed files
with
162 additions
and
137 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,18 @@ | ||
<?php | ||
//A footer for consistent look and feel sitewide | ||
?> | ||
<!-- shift it to the right by 250 pixels when the sidebar is visible --> | ||
<div class="w3-main" style="margin-left:250px"> | ||
<footer id="myFooter"> | ||
<div class="w3-container w3-theme-l2 w3-padding-32"> | ||
<h4>Footer</h4> | ||
</div> | ||
|
||
<table class="footer"> | ||
<tbody> | ||
<tr> | ||
<td> | ||
<ul class="footer"> | ||
<li class="footer"><a class="footer_item" href="http://en.wikipedia.org/wiki/Main_Page">Donate here:</a></li> | ||
<li class="footer"><a class="footer_item" href="http://en.wikipedia.org/wiki/Main_Page">Wikipedia</a></li> | ||
</ul> | ||
</td> | ||
</tr> | ||
</tbody> | ||
</table> | ||
|
||
|
||
<table class="crawler"><tbody><tr><td> </td><td><span style="font-weight: bold;">Help yourself:</span> | ||
Remind yourself to take regular breaks from browsing | ||
using a free plug-in from <a href="http://www.stretchclock.com/"><img src="images/stretchclock-logo-dark-cropped.png" alt="StretchClock.com"></a> </td><td></td></tr></tbody></table> | ||
<div class="w3-container w3-theme-l1"> | ||
<p><a href="https://github.com/ke7ijo/Hydrogen" target="_blank">Hydrogen</a> powered</p> | ||
</div> | ||
</footer> | ||
</div> | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,16 @@ | ||
<?php | ||
|
||
//$logo_image = "/images/logo.jpg"; | ||
//$headline = "My Page" | ||
|
||
?> | ||
<table> | ||
<tbody> | ||
<tr> | ||
<td> | ||
<?php | ||
<div class="w3-row w3-padding-64"> | ||
|
||
<?php | ||
if (isset($logo_image)) { | ||
|
||
echo '<div id="logo"><img style="width: 120px; height: 120px;" alt="mem" src="' . $logo_image .'"></div>'; | ||
echo '<div class="w3-third w3-container w3-hide-medium w3-hide-small"><p class="w3-padding-large w3-padding-32 w3-center "><img src="' . $logo_image .'"></p></div>'; | ||
} | ||
?> | ||
|
||
</td> | ||
<td> | ||
|
||
<?php | ||
<?php | ||
if (isset($headline)) { | ||
echo $headline; | ||
echo '<div class="w3-third w3-container"><p class="w3-padding-large w3-padding-32 w3-center">'. $headline .'</div>'; | ||
} | ||
?> | ||
|
||
</td> | ||
</tr> | ||
</tbody> | ||
</table> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<!-- Navbar --> | ||
<div class="w3-top"> | ||
<div class="w3-bar w3-theme w3-top w3-left-align w3-large"> | ||
<a class="w3-bar-item w3-button w3-right w3-hide-large w3-hover-white w3-large w3-theme-l1" href="javascript:void(0)" onclick="w3_open()"><i class="fa fa-bars"></i></a> | ||
<a href="#" class="w3-bar-item w3-button w3-theme-l1">Logo</a> | ||
<a href="./" class="w3-bar-item w3-button w3-hide-small w3-hover-white">Home</a> | ||
<a href="#" class="w3-bar-item w3-button w3-hide-small w3-hover-white">About</a> | ||
<a href="#" class="w3-bar-item w3-button w3-hide-small w3-hover-white">News</a> | ||
<a href="#" class="w3-bar-item w3-button w3-hide-small w3-hover-white">Contact</a> | ||
<?php | ||
include('Hydrogen/elemSearchForm.php'); | ||
include('Hydrogen/elemLoginStatusbar.php'); | ||
?> | ||
</div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,6 @@ | ||
<td><ul class="menubar" id="searchform"> | ||
<li class="menubar"> | ||
<form action="search.php"> | ||
<span class="w3-bar-item w3-button w3-medium w3-hide-small"> | ||
<form action="search.php"> | ||
<input type="text" name="q" > | ||
<input type="submit" value="Search"> | ||
</form> | ||
</li> | ||
</ul> | ||
</td> | ||
</span> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.