Going to Bed with Bread
By Dan Jupiter
Photos by Rox GroverThis practical and inspiring book offers a collection of easy, time-efficient bread recipes. It’s about building a ritual of bread-making that nourishes both body and soul. Whether you’re a beginner or an experienced baker, this book will inspire you.
Going to Bed with Bread accompanies a photo exhibit, "Never Past Your Breadtime," curated by Kristina Koonce at The Proletariat Gallery in Galveston, TX - November 30, 2024 through January 4, 2025.
Book © Dan Jupiter. Web Design, Book Layout, and Photography by Rox Grover.
Double carousel tutorial
Here's how you can embed 2 or more carousels:
1. Click on the Embed element in the Carrd template with the code. Look for this part of the code:<div id="app">
Change
<div class="slider">
<transition-group tag="div" v-bind:name="transitionName">...app
ID to something unique, e.g. app1
.<div id="app1">
<div class="slider">
<transition-group tag="div" v-bind:name="transitionName">...
2. Scroll down the code and find this part:<script>
Change the
let slider = new Vue({
el: "#app",
data: {...slider
to a unique ID, e.g. slider1
. Also change the #app
to the unique ID you set in step #1, e.g. #app1
. The 2 changes to the code will look like this:<script>
let slider1 = new Vue({
el: "#app1",
data: {...
3. Repeat step #1 and #2 for the 2nd Embed for the 2nd carousel slider, or more, each time giving each carousel slider code a unique ID.
4. Publish, aaand done!