Favicon added
[josuexyz/.git] / partials / head.ejs
index da692a125c7e5c551313a0dccee5550d1f93e6fa..307fa12d6814daac5e01df0082982b98a9aaade5 100644 (file)
@@ -1,146 +1,7 @@
 <!-- views/partials/head.ejs -->
 <meta name="viewport" content="width=device-width, initial-scale=1">
 <meta charset="UTF-8">
-<title>Oscar J Rodriguez B</title>
-<!-- Personalized style -->
+<title><%= title %></title>
+<link rel="icon" type="image/svg+xml" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 width=%22256%22 height=%22256%22 viewBox=%220 0 100 100%22><rect width=%22100%22 height=%22100%22 rx=%2220%22 fill=%22%236ee786%22></rect><path fill=%22%23000000%22 d=%22M46.99 78.85L46.99 78.85Q42.27 78.85 38.42 76.97Q34.57 75.10 32.25 71.31Q29.92 67.52 29.69 61.82L29.69 61.82L29.77 61.58L37.15 61.58Q37.30 67.32 39.79 70.02Q42.27 72.71 46.88 72.71L46.88 72.71Q50.12 72.71 52.19 71.33Q54.26 69.94 55.25 67.50Q56.25 65.06 56.25 61.89L56.25 61.89L56.25 27.21L48.67 26.19L48.67 21.15L70.31 21.15L70.31 26.11L63.95 27.21L63.95 61.89Q63.95 66.97 62.01 70.80Q60.08 74.63 56.31 76.74Q52.54 78.85 46.99 78.85Z%22></path></svg>" />
+<!-- Compiled bulma archive from the sass -->
 <link rel='stylesheet' href='/stylesheets/style.css'>
-<!-- bulma framework -->
-<link rel="stylesheet" href="../node_modules/bulma/css/bulma.css">
-<!-- fontawesome -->
-<link rel="stylesheet" href="../node_modules/font-awesome/css/font-awesome.min.css">
-<style>
-  body {
-    padding-bottom: 50px;
-  }
- /* de aca para abajo es para el hamburguer*/
-  a {
-    text-decoration: none;
-    color: #232323;
-
-    transition: color 0.3s ease;
-  }
-
-  a:hover {
-    color: tomato;
-  }
-
-  #menuToggle {
-    display: block;
-    position: relative;
-    top: 5px;
-    left: 15px;
-
-    z-index: 1;
-
-    -webkit-user-select: none;
-    user-select: none;
-  }
-
-  #menuToggle input {
-    display: block;
-    width: 40px;
-    height: 32px;
-    position: absolute;
-    top: -7px;
-    left: -5px;
-
-    cursor: pointer;
-
-    opacity: 0;
-    /* hide this */
-    z-index: 2;
-    /* and place it over the hamburger */
-
-    -webkit-touch-callout: none;
-  }
-
-  /*
- * Just a quick hamburger
- */
-  #menuToggle span {
-    display: block;
-    width: 33px;
-    height: 4px;
-    margin-bottom: 5px;
-    position: relative;
-
-    background: #cdcdcd;
-    border-radius: 3px;
-
-    z-index: 1;
-
-    transform-origin: 4px 0px;
-
-    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0),
-      background 1s cubic-bezier(0.77, 0.2, 0.05, 1.0),
-      opacity 0.55s ease;
-  }
-
-  #menuToggle span:first-child {
-    transform-origin: 0% 0%;
-  }
-
-  #menuToggle span:nth-last-child(2) {
-    transform-origin: 0% 100%;
-  }
-
-  /*
- * Transform all the slices of hamburger
- * into a crossmark.
- */
-  #menuToggle input:checked~span:nth-last-child(4) {
-    transform: translate(-6px, 8px) rotate(-45deg) scale(0.4, 0.8);
-    background: #ffcdcd;
-  }
-
-  /*
- * But let's hide the middle one.
- */
-  #menuToggle input:checked~span:nth-last-child(3) {
-    transform: translate(-5px, 0px) rotate(0deg) scale(0.7, 0.7);
-    background: #ffcdcd;
-  }
-
-  /*
- * Ohyeah and the last one should go the other direction
- */
-   #menuToggle input:checked~span:nth-last-child(2) {
-    transform: translate(-4px, -11px) rotate(45deg) scale(0.4, 0.8);
-    background: #ffcdcd;
-  }
-
-  /*
- * Make this absolute positioned
- * at the top left of the screen
- */
-  #menu {
-    position: absolute;
-    width: 300px;
-    margin: -100px 0 0 -50px;
-    padding: 50px;
-    padding-top: 125px;
-    height:120vh;
-    background: #343a40;
-    list-style-type: none;
-    -webkit-font-smoothing: antialiased;
-    /* to stop flickering of text in safari */
-
-    transform-origin: 0% 0%;
-    transform: translate(-100%, 0);
-
-    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
-  }
-
-  #menu li {
-    padding: 0.5rem 0;
-    font-size: 1.5rem;
-    color: white;
-  }
-
-  /*
- * And let's slide it in from the left
- */
-  #menuToggle input:checked~ul {
-    transform: none;
-  }
-</style>