Adapted from TikTok @chloebluffcakes
Very buttery, and the perfect balance between soft and crunchy. Be sure not to over bake!
- 1 c butter
- 1 cup sugar
- 1 egg
- 1/2 tsp almond extract
const HighlightPairedShortcode = require("@11ty/eleventy-plugin-syntaxhighlight/src/HighlightPairedShortcode"); | |
const highlightCodeDemo = (code, lang) => { | |
const highlightedCode = HighlightPairedShortcode(code, lang); | |
return highlightedCode; | |
}; |
/* | |
OLD hacky way | |
*/ | |
ul { | |
list-style: none; | |
padding: 0; | |
} | |
li { | |
position: relative; |
Join my stream on Twitch to help build this app! Feel free to add comments about additional features we should explore.
{% set imgBase %}/img/post-directory/{% endset %}
![Alt text]({{ imgBase }}img-name.png)
*[class], | |
*[id] { | |
position: relative; | |
outline: 2px dashed red; | |
} | |
*[class]::before, *[class]::after, | |
*[id]::before, | |
*[id]::after { | |
position: absolute; |
/* Place in your _data directory to create an Eleventy data source from an RSS feed | |
* View package docs for full available parsed schema: https://www.npmjs.com/package/rss-parser | |
* | |
* TO USE in Nunjucks assuming a filename of `rssposts` | |
* | |
* {% for post in rssposts %} | |
* <article> | |
* <h3> | |
* <a href="{{ post.url }}">{{ post.title }}</a> | |
* </h3> |
@import url("https://fonts.googleapis.com/css2?family=Red+Rose:wght@700&family=Roboto+Slab:wght@400;600&display=swap"); | |
:root { | |
--color-primary: #ef8994; | |
--color-secondary: #e5ce94; | |
--color-background: #013785; | |
--color-text: #e8b9c0; | |
--color-light: #fff; | |
--color-anchor: var(--color-primary); | |
--color-highlight: #fffb4a; |
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1" /> | |
<title>[Your Style Title] by [Your Name] | Style Stage</title> | |
<meta name="description" content="[Your optional description]" /> | |
<link href="style.css" rel="stylesheet" /> | |
</head> | |
<body> |