Skip to content

Instantly share code, notes, and snippets.

@ocharan
Created October 4, 2013 08:46
Show Gist options
  • Save ocharan/6822899 to your computer and use it in GitHub Desktop.
Save ocharan/6822899 to your computer and use it in GitHub Desktop.
<!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">
&copy; 2011 UV
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment