Skip to content

Commit

Permalink
First commit
Browse files Browse the repository at this point in the history
syncing files for the first time for IDLEG
  • Loading branch information
paleomedia committed Feb 17, 2015
1 parent b6f1344 commit bee2e97
Show file tree
Hide file tree
Showing 12 changed files with 130 additions and 0 deletions.
7 changes: 7 additions & 0 deletions functions.php
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));
}
?>
5 changes: 5 additions & 0 deletions icecream.data
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
Binary file added images/Email-Icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/Facebook-Icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/Github-Icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/RSS-Icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/Twitter-Icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/thumbs_down.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/thumbs_up.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/topo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
69 changes: 69 additions & 0 deletions index.html
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>
49 changes: 49 additions & 0 deletions styles.css
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;
}

0 comments on commit bee2e97

Please sign in to comment.