Skip to content

Commit

Permalink
added reset and layout
Browse files Browse the repository at this point in the history
  • Loading branch information
arisbartee committed May 15, 2009
1 parent 4aa9cfb commit 9dc8a74
Show file tree
Hide file tree
Showing 5 changed files with 77 additions and 10 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
_site
.project
.tmp*
*.[oa]
Expand Down
12 changes: 12 additions & 0 deletions _config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
destination: ./_site
auto: false
lsi: false
server_port: 4000
pygments: false
markdown: maruku
permalink: date
maruku:
use_tex: false
use_divs: false
png_dir: images/latex
png_url: /images/latex
13 changes: 13 additions & 0 deletions _layouts/home.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>Arris Bartee</title>
<link href="/stylesheets/reset.css" media="screen" rel="stylesheet" type="text/css" />
<link href="/stylesheets/home.css" media="screen" rel="stylesheet" type="text/css" />
</head>
<body>
<div></div>
{{ content }}
</body>
</html>
15 changes: 5 additions & 10 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,10 +1,5 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>Aris Bartee</title>
</head>
<body>
<H2>This is my site. There are many like it, but this is one mine.</H2>
</body>
</html>
---
layout: home
---

<H2>This is my site. There are many like it, but this is one mine.</H2>
46 changes: 46 additions & 0 deletions stylesheets/reset.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
margin: 0;
padding: 0;
border: 0;
outline: 0;
font-weight: inherit;
font-style: inherit;
font-size: 11px;
font-family: "lucida grande",tahoma,verdana,arial,sans-serif;
vertical-align:top;
}
/* remember to define focus styles! */
:focus {
outline: 0;
}
body {
line-height: 1;
color: black;
background: white;
}
ol, ul {
list-style: none;
}
/* tables still need 'cellspacing="0"' in the markup */
table {
border-collapse: separate;
border-spacing: 0;
}
caption, th, td {
text-align: left;
font-weight: normal;
}
blockquote:before, blockquote:after,
q:before, q:after {
content: "";
}
blockquote, q {
quotes: "" "";
}

0 comments on commit 9dc8a74

Please sign in to comment.