45 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			45 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
<!DOCTYPE html>
 | 
						|
<html lang="es">
 | 
						|
 | 
						|
<head>
 | 
						|
  <meta charset="UTF-8">
 | 
						|
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
 | 
						|
  <title>Linux Party - Open Bokeron</title>
 | 
						|
  <link rel="stylesheet" href="https://cdn.simplecss.org/simple.min.css">
 | 
						|
  <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/flexboxgrid/6.3.1/flexboxgrid.min.css" type="text/css">
 | 
						|
  <link rel="stylesheet" href="./style.css" type="text/css">
 | 
						|
</head>
 | 
						|
 | 
						|
<body>
 | 
						|
  <!-- Common header -->
 | 
						|
  <header>
 | 
						|
    <img class="icon" src="assets/logo.jpg" alt="OpenBokeron logo">
 | 
						|
    <h1>Open Bokeron</h1>
 | 
						|
    <p>"¡Abre tu mente, abre tu código!"</p>
 | 
						|
    <nav>
 | 
						|
      <ul>
 | 
						|
        <li>
 | 
						|
          <a href="/">Página principal</a>
 | 
						|
        </li>
 | 
						|
        <li>
 | 
						|
          <a href="proyectos.html">Proyectos</a>
 | 
						|
        </li>
 | 
						|
        <li>
 | 
						|
          <a href="contacto.html">Contacto</a>
 | 
						|
        </li>
 | 
						|
      </ul>
 | 
						|
    </nav>
 | 
						|
  </header>
 | 
						|
 | 
						|
  <!-- Common footer -->
 | 
						|
  <footer>
 | 
						|
    <p>© 2024 Open Bokeron.</p>
 | 
						|
    <p>
 | 
						|
      Made with <span style="color: #e25555;">♥</span> in
 | 
						|
      <a href="https://bitbucket.org/openbokeron/openbokeron.bitbucket.io">Bitbucket</a>
 | 
						|
    </p>
 | 
						|
  </footer>
 | 
						|
</body>
 | 
						|
 | 
						|
</html>
 |