logo

Grimgrains

Unnamed repository; edit this file 'description' to name the repository.
commit: e6d39a8cfb9a0e8ddfd74e2a304360635e340c33
parent bd78f80092cd68fbf9359bacaee102d9d04b778b
Author: neauoire <aliceffekt@gmail.com>
Date:   Sat, 21 Dec 2019 13:22:23 -0500

Updated 404

Diffstat:

M404.html72+++++++++++++++++++++++++-----------------------------------------------
MREADME.md8+-------
Mindex.html26--------------------------
3 files changed, 26 insertions(+), 80 deletions(-)

diff --git a/404.html b/404.html @@ -5,52 +5,29 @@ permalink: /404.html <html lang="en"> <head> <meta charset="utf-8"> - <title>Loading...</title> - <style> - .fadein { - -webkit-animation: fadein 3s linear 0s 1; - animation: fadein 3s linear 0s 1; - } - - @-webkit-keyframes fadein { - 0% {opacity: 0;} - 50% {opacity: 0;} - 100% {opacity: 1;} - } - @keyframes fadein { - 0% {opacity: 0;} - 50% {opacity: 0;} - 100% {opacity: 1;} - } - - body { - font-family: 'Helvetica Neue', Helvetica, Arial; - } - </style> + <meta name="description" content="Grim Grains is an illustrated food blog, it features plant-based (vegan) recipes."> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + <!-- Twitter --> + <meta name="twitter:card" content="summary"> + <meta name="twitter:site" content="@RekkaBell"> + <meta name="twitter:title" content="Grimgrains"> + <meta name="twitter:description" content="An illustrated food blog."> + <meta name="twitter:creator" content="@RekkaBell"> + <meta name="twitter:image" content="https://grimgrains.com/media/services/icon.jpg"> + <!-- Facebook --> + <meta property="og:title" content="Grimgrains" /> + <meta property="og:type" content="article" /> + <meta property="og:url" content="http://grimgrains.com/" /> + <meta property="og:image" content="https://grimgrains.com/media/services/icon.jpg" /> + <meta property="og:description" content="An illustrated food blog." /> + <meta property="og:site_name" content="Grimgrains" /> + <link rel="stylesheet" type="text/css" href="links/reset.css"/> + <link rel="stylesheet" type="text/css" href="links/main.css"/> + <link rel="stylesheet" type="text/css" href="links/fonts.css"/> + <meta http-equiv = "refresh" content = "1; url=site/home.html" /> + <title>GrimGrains</title> </head> -<body style='background:black; color:white'> - <script> - // Find current path (relative to grimgrains.com) - let target = decodeURI(window.location.pathname); - - // Fancy slugify regex bit - target = target.toLowerCase(); - target = target.replace(/[\s·\\/_'",:;\.-]+/g, '+'); // Replace whitespace and "·\/_'",:;.-" to "+" - target = target.replace(/^\++|\++$/g, ''); // Remove "+"es at start and end - - document.location.href = document.location.origin + "/#" + target; // Go to grimgrains.com/#target - </script> - - <h1 class="fadein"> - Loading, please wait. - <br /> - If this takes a long time, please check your Javascript settings. - </h1> - - <noscript> - <h2 class="fadein"> - This website requires Javascript. To view the content, please enable it in your browser settings. - </h2> - </noscript> +<body> + Entering <a href='site/home.html'>Grimgrains</a>, please hold.. </body> -</html> +</html>+ \ No newline at end of file diff --git a/README.md b/README.md @@ -1,17 +1,11 @@ # Grimgrains -This repository is the sources for the Grimgrains website. The website is written in C, and requires `gcc` to be built. To rebuild the site, go to `src` and run the build script. +This repository is the sources for the Grimgrains website. The website is written in C, and requires `gcc` to build. To rebuild the site, go to `src` and run the build script: ``` ./build.sh ``` -### Old coffee notes - -``` -Devine & I are daily coffee drinkers, we sometimes have a second cup in the afternoon, but typically we limit ourselves to a single cup in the morning. We drink it <b>black</b>, but enjoy the occasional flat white as a treat.<br /><br />We grind new beans each morning with a portable manual <a href='http://www.amzn.to/2p0pO2p' target='_blank'>coffee grinder</a>. We mainly use a <a href='http://www.ikea.com/us/en/catalog/products/30149839/' target='_blank'>stainless steel moka pot</a> for espresso.<br /><br />To make a perfect espresso with the moka pot, here are a few things to remember:<br /><br />The grind should be only slightly smaller than filter coffee.<br /><br />Warm up the water in the bottom part before screwing the top section.<br /><br />Take apart and clean the moka pot after each use.<br /><br />To finish, here is a list of the coffee places we've tried (and loved) in our travels:<br /><br /><a href='https://pradocafe.co' target='_blank'>Prado</a> — Vancouver, CA<br /><br /><a href='http://www.cafeneve.com' target='_blank'>Cafe Neve</a> — Montreal, CA<br /><br /><a href='https://sextantcoffee.com' target='_blank'>Sextant Coffee Roasters</a> — San Francisco, CA, US<br /><br /><a href='https://www.facebook.com/BigSurCafeOrganico/' target='_blank'>Big Sur</a> — La Paz, Mexico<br /><br /><a href='https://www.facebook.com/Fat-Camel-Israeli-Cafe-111529865551331/' target='_blank'>Fat Camel</a> — Whangarei, NZ<br /><br /> -``` - ### Macros Helpers ``` diff --git a/index.html b/index.html @@ -18,32 +18,6 @@ <meta property="og:image" content="https://grimgrains.com/media/services/icon.jpg" /> <meta property="og:description" content="An illustrated food blog." /> <meta property="og:site_name" content="Grimgrains" /> - - <script type="text/javascript" src="scripts/helpers.js"></script> - <script type="text/javascript" src="scripts/lib/riven.js"></script> - <script type="text/javascript" src="scripts/graph.js"></script> - <script type="text/javascript" src="scripts/lib/runic.js"></script> - <script type="text/javascript" src="scripts/runic.library.js"></script> - - <script type="text/javascript" src="scripts/nodes/query.js"></script> - <script type="text/javascript" src="scripts/nodes/router.js"></script> - <script type="text/javascript" src="scripts/nodes/database.js"></script> - <script type="text/javascript" src="scripts/nodes/indental.js"></script> - <script type="text/javascript" src="scripts/nodes/template.js"></script> - <script type="text/javascript" src="scripts/nodes/dom.js"></script> - <script type="text/javascript" src="scripts/nodes/document.js"></script> - - <script type="text/javascript" src="scripts/database/ingredients.ndtl"></script> - <script type="text/javascript" src="scripts/database/recipes.ndtl"></script> - <script type="text/javascript" src="scripts/database/pages.ndtl"></script> - - <script type="text/javascript" src="scripts/templates/recipe.js"></script> - <script type="text/javascript" src="scripts/templates/ingredient.js"></script> - <script type="text/javascript" src="scripts/templates/page.js"></script> - <script type="text/javascript" src="scripts/templates/home.js"></script> - <script type="text/javascript" src="scripts/templates/search.js"></script> - <script type="text/javascript" src="scripts/templates/service.js"></script> - <link rel="stylesheet" type="text/css" href="links/reset.css"/> <link rel="stylesheet" type="text/css" href="links/main.css"/> <link rel="stylesheet" type="text/css" href="links/fonts.css"/>