favicon & org icon

This commit is contained in:
Pablo Ferreiro 2024-02-20 22:19:28 +01:00
parent ed1fc331a5
commit 360bfea671
Signed by: ferreiro
GPG Key ID: 41FBCE65B779FA24
8 changed files with 20 additions and 1 deletions

View File

@ -8,7 +8,7 @@ The philosophy with this website for now is to KISS(keep it stupid simple) using
## TODO ## TODO
- [ ] Add our logo on the website, favicon. - [x] Add our logo on the website, favicon.
- [ ] Add content describing our association and other pages as needed. - [ ] Add content describing our association and other pages as needed.
- [ ] Work on SEO (OpenGraph, Twitter meta tags...) - [ ] Work on SEO (OpenGraph, Twitter meta tags...)
- [ ] Multilingual support(English + Spanish) - [ ] Multilingual support(English + Spanish)

BIN
assets/logo.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 39 KiB

View File

@ -7,11 +7,13 @@
<title>Contacto - Open Bokeron</title> <title>Contacto - Open Bokeron</title>
<link rel="stylesheet" href="https://cdn.simplecss.org/simple.min.css"> <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="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> </head>
<body> <body>
<!-- Common header --> <!-- Common header -->
<header> <header>
<img class="icon" src="assets/logo.jpg" alt="OpenBokeron logo">
<h1>Open Bokeron</h1> <h1>Open Bokeron</h1>
<p>"¡Abre tu mente, abre tu código!"</p> <p>"¡Abre tu mente, abre tu código!"</p>
<nav> <nav>

BIN
favicon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

View File

@ -7,11 +7,13 @@
<title>Open Bokeron</title> <title>Open Bokeron</title>
<link rel="stylesheet" href="https://cdn.simplecss.org/simple.min.css"> <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="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> </head>
<body> <body>
<!-- Common header --> <!-- Common header -->
<header> <header>
<img class="icon" src="assets/logo.jpg" alt="OpenBokeron logo">
<h1>Open Bokeron</h1> <h1>Open Bokeron</h1>
<p>"¡Abre tu mente, abre tu código!"</p> <p>"¡Abre tu mente, abre tu código!"</p>
<nav> <nav>

View File

@ -7,11 +7,13 @@
<title>Proyectos - Open Bokeron</title> <title>Proyectos - Open Bokeron</title>
<link rel="stylesheet" href="https://cdn.simplecss.org/simple.min.css"> <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="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> </head>
<body> <body>
<!-- Common header --> <!-- Common header -->
<header> <header>
<img class="icon" src="assets/logo.jpg" alt="OpenBokeron logo">
<h1>Open Bokeron</h1> <h1>Open Bokeron</h1>
<p>"¡Abre tu mente, abre tu código!"</p> <p>"¡Abre tu mente, abre tu código!"</p>
<nav> <nav>

View File

@ -7,11 +7,13 @@
<title>Linux Party - Open Bokeron</title> <title>Linux Party - Open Bokeron</title>
<link rel="stylesheet" href="https://cdn.simplecss.org/simple.min.css"> <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="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> </head>
<body> <body>
<!-- Common header --> <!-- Common header -->
<header> <header>
<img class="icon" src="assets/logo.jpg" alt="OpenBokeron logo">
<h1>Open Bokeron</h1> <h1>Open Bokeron</h1>
<p>"¡Abre tu mente, abre tu código!"</p> <p>"¡Abre tu mente, abre tu código!"</p>
<nav> <nav>

11
style.css Normal file
View File

@ -0,0 +1,11 @@
/* Override colors from CSS library */
:root {
--accent: green;
}
/* Custom style for the logo */
img.icon {
max-width: 128px;
max-height: 128px;
margin-top: 10px;
}