logo

Grimgrains

[mirror] Plant-based cooking website <https://grimgrains.com/>
commit: 2fdaeb65050b9267b282c3da6d030bd7831a138f
parent f3fb3fb32b259b5db33a8eaa79ea36ae2c813cf1
Author: Devine Lu Linvega <aliceffekt@gmail.com>
Date:   Wed,  9 Jan 2019 08:15:25 +1200

Improved coffee

Diffstat:

Mlinks/main.css3+++
Mscripts/database/ingredients.js25+++++++++++--------------
Mscripts/lib/runic.js1+
3 files changed, 15 insertions(+), 14 deletions(-)

diff --git a/links/main.css b/links/main.css @@ -49,6 +49,9 @@ h1,h2,h3,h4 { font-weight: normal; font-family: 'alte_haas_grotesk_bold'; margin #view #core #content columns ul li { padding-left:25px; position: relative; } #view #core #content columns ul li:before { content:"●"; position: absolute; top:0px; left:0px; font-size:12px;} #view #core #content columns ul li a { font-weight: bold } +#view #core #content ul.bullet li { font-weight: bold;position: relative;padding-left:30px;line-height: 25px; } +#view #core #content ul.bullet li:before { content:"•"; position: absolute;left:15px; } +#view #core #content ul.bullet li a { text-decoration: underline; } #view #core #content #instructions { margin-bottom:30px; } #view #core #content #instructions ul { margin-bottom:30px; } diff --git a/scripts/database/ingredients.js b/scripts/database/ingredients.js @@ -3,24 +3,21 @@ DATABASE.ingredients = ` Coffee BREF : {{Coffee}} is a brewed drink prepared from roasted coffee beans, which are the seeds of berries from the {{Coffea plant|https://en.wikipedia.org/wiki/Coffea}}. LONG - % blog/coffee.jpg + % blog/coffee.2.jpg & 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 {*black*}, but enjoy the occasional flat white as a treat. - & We grind new beans each morning with a portable manual {{coffee grinder|http://www.amzn.to/2p0pO2p}}. We mainly use a stainless steel moka pot for espresso, the model is the {{IKAE Radig|http://www.ikea.com/us/en/catalog/products/30149839/}}, which we found it in a bin at a marina in New Zealand. - * Moka Pot + & We grind new beans each morning with a portable manual {{coffee grinder|http://www.amzn.to/2p0pO2p}}. We mainly use a {{stainless steel moka pot|http://www.ikea.com/us/en/catalog/products/30149839/}} for espresso. & To make a perfect espresso with the moka pot, here are a few things to remember: - - The grind should be only slightly smaller than filter coffee. - - Warm up the water in the bottom part before screwing the top section. - - Remove from heat when you hear the sound of bubbles. - - Take apart and clean the machine after each use. + • The grind should be only slightly smaller than filter coffee. + • Warm up the water in the bottom part before screwing the top section. + • Take apart and clean the moka pot after each use. & &nbsp; - % blog/coffee.2.jpg - & I'm not saying that these brands are the very best, but they suit our needs. We bought these while in Victoria BC from MEC. GSI is the in-store brand for camping goods, their products have not failed us yet, and so we like to recommend them. + % blog/coffee.jpg & To finish, here is a list of the coffee places we've tried (and loved) in our travels: - - {{Prado|https://pradocafe.co}} - Vancouver, CA - - {{Cafe Neve|http://www.cafeneve.com}} - Montreal, CA - - {{Sextant Coffee Roasters|https://sextantcoffee.com}} - San Francisco, CA, US - - {{Big Sur|https://www.facebook.com/BigSurCafeOrganico/}} - La Paz, Mexico - - {{Fat Camel|https://www.facebook.com/Fat-Camel-Israeli-Cafe-111529865551331/}} - Whangarei, NZ + • {{Prado|https://pradocafe.co}} — Vancouver, CA + • {{Cafe Neve|http://www.cafeneve.com}} — Montreal, CA + • {{Sextant Coffee Roasters|https://sextantcoffee.com}} — San Francisco, CA, US + • {{Big Sur|https://www.facebook.com/BigSurCafeOrganico/}} — La Paz, Mexico + • {{Fat Camel|https://www.facebook.com/Fat-Camel-Israeli-Cafe-111529865551331/}} — Whangarei, NZ ~ LEGUMES diff --git a/scripts/lib/runic.js b/scripts/lib/runic.js @@ -7,6 +7,7 @@ function Runic (raw) { '-': { glyph: '-', tag: 'ul', sub: 'li', class: '', stash: true }, '!': { glyph: '!', tag: 'table', sub: 'tr', wrap: 'th', class: 'outline', stash: true }, '|': { glyph: '|', tag: 'table', sub: 'tr', wrap: 'td', class: 'outline', stash: true }, + '•': { glyph: '•', tag: 'ul', sub: 'li', class: 'bullet', stash: true }, '#': { glyph: '#', tag: 'code', sub: 'ln', class: '', stash: true }, '%': { glyph: '%' }, '?': { glyph: '?', tag: 'note', class: '' },