mirror of
https://github.com/LukeSmithxyz/based.cooking.git
synced 2025-12-21 01:49:53 +00:00
Rename content/_index.md to content/en-us/_index.md
This commit is contained in:
85
content/en-us/_index.md
Normal file
85
content/en-us/_index.md
Normal file
@@ -0,0 +1,85 @@
|
||||
---
|
||||
title: "🍲 Based Cooking 🍳"
|
||||
description: 'The fast-loading recipe site with cooking only and no ads.'
|
||||
layout: single
|
||||
---
|
||||
|
||||
## What do you want to cook?
|
||||
|
||||
<div class="search js-only">
|
||||
<input type="text" id="search" placeholder="Search ALL Recipes...">
|
||||
<button id="clear-search">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" class="ionicon" viewBox="0 0 512 512"><title>Backspace</title><path d="M135.19 390.14a28.79 28.79 0 0021.68 9.86h246.26A29 29 0 00432 371.13V140.87A29 29 0 00403.13 112H156.87a28.84 28.84 0 00-21.67 9.84v0L46.33 256l88.86 134.11z" fill="none" stroke="currentColor" stroke-linejoin="round" stroke-width="32"></path><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="32" d="M336.67 192.33L206.66 322.34M336.67 322.34L206.66 192.33M336.67 192.33L206.66 322.34M336.67 322.34L206.66 192.33"></path></svg>
|
||||
</button>
|
||||
</div>
|
||||
|
||||
<script>
|
||||
// @license magnet:?xt=urn:btih:5ac446d35272cc2e4e85e4325b146d0b7ca8f50c&dn=unlicense.txt Unlicense
|
||||
|
||||
document.addEventListener("DOMContentLoaded", () => {
|
||||
for (e of document.getElementsByClassName("js-only")) {
|
||||
e.classList.remove("js-only");
|
||||
}
|
||||
|
||||
const recipes = document.querySelectorAll("#artlist li");
|
||||
const search = document.getElementById("search");
|
||||
const oldheading = document.getElementById("newest-recipes");
|
||||
const clearSearch = document.getElementById("clear-search");
|
||||
const artlist = document.getElementById("artlist");
|
||||
|
||||
search.addEventListener("input", () => {
|
||||
// grab search input value
|
||||
const searchText = search.value.toLowerCase().trim().normalize('NFD').replace(/\p{Diacritic}/gu, "");
|
||||
const searchTerms = searchText.split(" ");
|
||||
const hasFilter = searchText.length > 0;
|
||||
|
||||
artlist.classList.toggle("list-searched", hasFilter);
|
||||
oldheading.classList.toggle("hidden", hasFilter);
|
||||
|
||||
// for each recipe hide all but matched
|
||||
recipes.forEach(recipe => {
|
||||
const searchString = `${recipe.textContent} ${recipe.dataset.tags}`.toLowerCase().normalize('NFD').replace(/\p{Diacritic}/gu, "");
|
||||
const isMatch = searchTerms.every(term => searchString.includes(term));
|
||||
|
||||
recipe.hidden = !isMatch;
|
||||
recipe.classList.toggle("matched-recipe", hasFilter && isMatch);
|
||||
})
|
||||
})
|
||||
|
||||
clearSearch.addEventListener("click", () => {
|
||||
search.value = "";
|
||||
recipes.forEach(recipe => {
|
||||
recipe.hidden = false;
|
||||
recipe.classList.remove("matched-recipe");
|
||||
})
|
||||
|
||||
artlist.classList.remove("list-searched");
|
||||
oldheading.classList.remove("hidden");
|
||||
})
|
||||
})
|
||||
// @license-end
|
||||
</script>
|
||||
|
||||
## Newest Recipes
|
||||
|
||||
{{< artlist >}}
|
||||
|
||||
## Or Browse by Category...
|
||||
|
||||
{{< tagcloud >}}
|
||||
|
||||
## About this site
|
||||
|
||||
Founded to provide a simple online cookbook without ads and obese web design.
|
||||
See the story of this site unfold in three videos:
|
||||
|
||||
- [A Demonstration of Modern Web Bloat](https://odysee.com/@Luke:7/a-demonstration-of-modern-web-bloat:f)
|
||||
- [The War Against Web Bloat Continues...](https://odysee.com/@Luke:7/the-war-against-web-bloat-continues...:a)
|
||||
- [SoyDevs DESTROYED Epic Style by Based Cooking!](https://odysee.com/@Luke:7/soydevs-destroyed-epic-style-by-based:6)
|
||||
|
||||
## It's easy to contribute!
|
||||
|
||||
New recipes can be submitted [on Github](https://github.com/lukesmithxyz/based.cooking).
|
||||
We are funded by you only, not 20MB of ads or privacy-violating trackers per page.
|
||||
|
||||
{{< crypto >}}
|
||||
Reference in New Issue
Block a user