Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created March 30, 2021 01:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/2e868197502ac67c63bd9935dd71fc1c to your computer and use it in GitHub Desktop.
Save parzibyte/2e868197502ac67c63bd9935dd71fc1c to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--Poner un block para que luego pueda ser remplazado en las siguientes plantillas; lo mismo con el block contenido-->
<title>CRUD MySQL con Flask - {% block titulo %}{% endblock %}</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma@0.9.2/css/bulma.min.css">
</head>
<body>
<nav class="navbar is-warning" role="navigation" aria-label="main navigation">
<div class="navbar-brand">
<a href="https://parzibyte.me/blog" class="navbar-item">
<img alt="Logo de Parzibyte"
src="https://raw.githubusercontent.com/parzibyte/ejemplo-mern/main/src/img/parzibyte_logo.png"
style="max-height: 80px" />
</a>
<button class="navbar-burger is-warning button" aria-label="menu" aria-expanded="false"
data-target="navbarBasicExample">
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
</button>
</div>
<div class="navbar-menu">
<div class="navbar-start">
<a class="navbar-item" href="{{url_for('juegos')}}">Juegos</a>
</div>
<div class="navbar-end">
<div class="navbar-item">
<div class="buttons">
<a href="https://parzibyte.me#contacto" class="button is-primary">
<strong>Ayuda y soporte</strong>
</a>
</div>
</div>
</div>
</div>
</nav>
{%block contenido %} {% endblock %}
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment