logo

Grimgrains

Unnamed repository; edit this file 'description' to name the repository.
commit: 876684a21b993bc5bc08512080595f1ce8f8e499
parent a8d85784a3dae920fd0859d0002e5a83d09ea94b
Author: Rekka <rekkabell@gmail.com>
Date:   Wed, 14 Mar 2018 12:53:53 +1300

Coffee blog

Diffstat:

Mlinks/main.css6+++++-
Amedia/blog/coffee.2.jpg0
Amedia/blog/coffee.jpg0
Mscripts/database/ingredients.js24++++++++++++++++++------
Mscripts/templates/ingredient.js4++--
5 files changed, 25 insertions(+), 9 deletions(-)

diff --git a/links/main.css b/links/main.css @@ -20,12 +20,16 @@ h1,h2,h3,h4 { font-weight: normal; font-family: 'alte_haas_grotesk_bold'; margin #view #core #content h2 { text-transform: capitalize; font-size:28px; } #view #core #content h3 { text-transform: capitalize; font-size:24px; border-bottom:2px solid black; line-height: 45px } #view #core #content p { font-size:18px; margin-bottom: 30px; max-width:600px; line-height: 26px } -#view #core #content p:nth-child(2) { font-size:24px; } +#view #core #content p.bref { font-size:28px; margin-bottom: 45px; line-height: 34px } #view #core #content p a { font-weight: bold } #view #core #content p a:hover { text-decoration: underline; } #view #core #content img { margin-bottom: 30px; border-radius: 2px } #view #core #content img.photo { width:100%; } #view #core #content columns { columns:2; display: block; margin-bottom:30px; column-gap: 30px } +#view #core #content columns list { line-height: 24px } +#view #core #content columns list ln { padding-left:25px; position: relative; } +#view #core #content columns list ln:before { content:"●"; position: absolute; top:0px; left:0px; font-size:12px;} +#view #core #content columns list ln a { font-weight: bold } #view #core #content #instructions { margin-bottom:30px; } #view #core #content #instructions list { margin-bottom:30px; } diff --git a/media/blog/coffee.2.jpg b/media/blog/coffee.2.jpg Binary files differ. diff --git a/media/blog/coffee.jpg b/media/blog/coffee.jpg Binary files differ. diff --git a/scripts/database/ingredients.js b/scripts/database/ingredients.js @@ -1,14 +1,26 @@ DATABASE.ingredients = ` Coffee - TYPE : Legume BREF : {{Coffee}} is considered to be one of the best foods because their chemical structures are not altered by cooking. Lens is the latin name for lentil. LONG - & Lentils are considered to be one of the best foods because their chemical structures are not altered by cooking. Lens is the latin name for lentil. - & Lentils are considered to be one of the latin name for lentil. Lentils are considered to be one of the best foods because their chemical structures are not altered by cooking. Lens is the latin name for lentil. Lentils are considered to be one of the best foods because their chemical structures are not altered by cooking. Lens is the latin name for lentil. - - Item1 - - Item2 - - Item3 + % blog/coffee.jpg + > <columns> + * Coffee on Pino + & Devine & I are coffee drinkers, we have a one per day. We have a second cup on occasion - or, second wind, as we like to call it. We drink it black, but enjoy having a flat white (has less milk than a latte) with a {{non-dairy milk|Soy Milk}} as a treat. + & Most times, we have a cup at home on {{Pino|http://100r.co}}, and so having good coffee gear is essential. We had two requirements: {{portability and durability|http://100r.co/resources.html#habitat}}. (Two of my glass presses have made friends with the floor in the past.) + & Our first buy, was a {{GSI outdoors french press|amzn.to/2FrWg8a}}. It's BPA-free (made from co-polyester), and shatter resistant - perfect for those of us prone to recurrent bouts of clumsiness. + & We like to grind our own beans, so we got a {{GSI outdoors coffee grinder|amzn.to/2p0pO2p}}. Non-electric, and portable. + & Sometimes, we use a stainless steel moka pot for espresso. The model is an {{ikea RADIG espresso pot|http://www.ikea.com/us/en/catalog/products/30149839/}}, we found it in a bin at the marina. I didn't know ikea made moka pots. I can't say this would be my first choice, but it was free and it works so... ¯&#92;_(ツ)_/¯. + % 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. + & 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 + > </columns> + diff --git a/scripts/templates/ingredient.js b/scripts/templates/ingredient.js @@ -27,8 +27,8 @@ function IngredientTemplate(id,rect) var html = "" html += `<h1>${ingredient.TYPE ? ingredient.TYPE.capitalize()+"/" : ''}${name.capitalize()}</h1>` - html += ingredient.BREF ? `<p>${ingredient.BREF.to_markup()}</p>` : '' - html += ingredient.LONG ? new Runic(ingredient.LONG) : '' + html += ingredient.BREF ? `<p class='bref'>${ingredient.BREF.to_markup()}</p>` : '' + html += ingredient.LONG ? `${new Runic(ingredient.LONG)}` : '' html += `${make_similar(name,recipes)}` return html }