Created
October 4, 2013 08:46
-
-
Save ocharan/6822899 to your computer and use it in GitHub Desktop.
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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" | |
"http://www.w3.org/TR/html4/strict.dtd"> | |
<html lang="en"> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html;charset=utf-8"> | |
<link type="text/css" rel="stylesheet" href="/css/main.css" media="screen"> | |
<title>Un sitio web</title> | |
</head> | |
<body> | |
<div id="header"> | |
<h1>Un sitio web</h1> | |
<h2>Un gran menú</h2> | |
<div id="navigation"> | |
<ul> | |
<li><a href="/">Inicio</a></li> | |
<li><a href="/archivo">Archivo</a></li> | |
<li><a href="/acerca">Acerca</a></li> | |
</ul> | |
</div> | |
</div> | |
<div id="posts"> | |
<%= yield %> | |
</div> | |
<div id="sidebar"> | |
<div id="blogroll"> | |
<h2>Blogs</h2> | |
<ul> | |
<li><a href="http://rubycorner.com/">Ruby Corner</a></li> | |
</ul> | |
</div> | |
<div id="popular_posts"> | |
<h2>Entradas populares</h2> | |
<ul> | |
<li><a href="/posts/1">Entradas más recientes</a></li> | |
</ul> | |
</div> | |
</div> | |
<div id="footer"> | |
© 2011 UV | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment