-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
syncing files for the first time for IDLEG
- Loading branch information
1 parent
b6f1344
commit bee2e97
Showing
12 changed files
with
130 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
outputs e.g. somefile.txt was last modified: December 29 2002 22:16:23. | ||
|
||
$filename = 'somefile.txt'; | ||
if (file_exists($filename)) { | ||
echo "$filename was last modified: " . date ("F d Y H:i:s.", filemtime($filename)); | ||
} | ||
?> |
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,5 @@ | ||
conrad|32|rocky road | ||
robby|29|chocolate fudge | ||
adam|23|vanilla | ||
clayton|25|red bean | ||
ben|12|phish food |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,69 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
|
||
|
||
<head> | ||
|
||
<title>IDLEG - Idaho Legislative Information Portal, Bills, Lawmakers & Data</title> | ||
<meta charset= "utf-8" /> | ||
<meta name="description" content="idleg: Idaho legislative bill information portal" /> | ||
<meta name="keywords" content="Idaho, legislature, bills, laws, legislation" /> <!-- Make dynamic based on homepage --> | ||
<meta name="author" content="Nathaniel Hoffman" | ||
<meta name="revised" content="<?php filemtime(index.html);" /> <!-- last mod of index.html --> | ||
|
||
<link href="styles.css" type="text/scc" rel="stylesheet" /> | ||
<link rel="shortcut icon" href="favicon.ico" /> | ||
|
||
</head> | ||
|
||
|
||
<body> | ||
|
||
<header> | ||
<div class="tops"> | ||
|
||
<div id="topline"> | ||
<div class="wrapper"> | ||
<div id="socials"> | ||
<ul> | ||
<li>Twit</li> | ||
<li>RSS</li> | ||
<li>Git</li> | ||
<li>Mail</li> | ||
<li>FB</li> | ||
</ul> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<div id="logoline"> | ||
<div class="wrapper"> | ||
<div id="logo"><h1>#IDleg</h1></div> | ||
<div id="slogan"><h2>The socio-political social network</h2></div> | ||
<div id="search">Search</div> | ||
</div> | ||
</div> | ||
|
||
<div id="menu"> | ||
<div class="wrapper"> | ||
<ul> | ||
<li>Home</li> | ||
<li>About</li> | ||
<li>Bills</li> | ||
<li>Lawmakers</li> | ||
<li>Topics</li> | ||
</ul> | ||
</div> | ||
</div> | ||
|
||
</div> | ||
|
||
</header> | ||
|
||
|
||
|
||
|
||
|
||
|
||
</body> | ||
</html> |
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,49 @@ | ||
.wrapper { | ||
margin: 0 auto; | ||
width: 960px; | ||
opacity: 1.0; | ||
} | ||
|
||
.tops { | ||
width: 100%; | ||
height: 165px; | ||
background-image: url("images/topo.png"); | ||
background-repeat: repeat; | ||
} | ||
|
||
#topline { | ||
width: 100%; | ||
height: 40px; | ||
background-color: #99cccc; | ||
opacity: 0.4; | ||
} | ||
|
||
#logo { | ||
float: left; | ||
} | ||
|
||
|
||
#socials { | ||
list-style: none; | ||
margin: 0; | ||
padding: 0; | ||
} | ||
|
||
#slogan { | ||
float: left; | ||
} | ||
|
||
#menu { | ||
width: 100%; | ||
height: 60px; | ||
background-color: #99cccc; | ||
opacity: 0.4; | ||
clear: both; | ||
list-style: none; | ||
margin: 0; | ||
padding: 0; | ||
} | ||
|
||
li { | ||
display: inline; | ||
} |