Rename "Eating The World" to "World Plate Adventures" to avoid conflict with eatingtheworld.net
continuous-integration/drone/push Build is passing Details

master
Garrett Mills 2 months ago
parent c52d8d15a1
commit bfcd8c8713

@ -67,7 +67,7 @@ Route
Route.get('/food') Route.get('/food')
.pre(SiteTheme) .pre(SiteTheme)
.calls<FoodBlog>(FoodBlog, fb => fb.index) .calls<FoodBlog>(FoodBlog, fb => fb.index)
.alias('etw') .alias('wpa')
Route.get('/food/about') Route.get('/food/about')
.pre(SiteTheme) .pre(SiteTheme)

@ -2,7 +2,7 @@ extends page
block append food-content block append food-content
.centered-content .centered-content
h2(style="font-size: 36pt") About ETW h2(style="font-size: 36pt") About WPA
img(src="/assets/img/profile.jpg" width=200 height=200 style='border-radius: 20px; margin-top: 10px;') img(src="/assets/img/profile.jpg" width=200 height=200 style='border-radius: 20px; margin-top: 10px;')
@ -10,12 +10,14 @@ block append food-content
p Growing up in the United States, I have a very western-centric exposure to food. Over the past few years, I've started exposing myself to an increasingly broad range of international cuisine -- especially through my own cooking. p Growing up in the United States, I have a very western-centric exposure to food. Over the past few years, I've started exposing myself to an increasingly broad range of international cuisine -- especially through my own cooking.
p The biggest challenge I've run into is just how immense the world of food is, which can make it hard to <i>decide on</i> new cuisines to try. Eating the World is my attempt to better do this. p The biggest challenge I've run into is just how immense the world of food is, which can make it hard to <i>decide on</i> new cuisines to try. World Plate Adventures is my attempt to better do this.
p The premise behind Eating the World is simple: each month, my partner Faith and I will choose a new country and spend a few days researching the food. Then, each week of the month I'll cook a new dish from that country. p The premise behind WPA is simple: each month, my partner Faith and I will choose a new country and spend a few days researching the food. Then, each week of the month I'll cook a new dish from that country.
p My hope is that this will provide some much needed direction for my learning journey, and will help me discover even more cuisines. As you might imagine, this is a <i>very</i> long-term project. p My hope is that this will provide some much needed direction for my learning journey, and will help me discover even more cuisines. As you might imagine, this is a <i>very</i> long-term project.
p (Not to be confused with the excellent <a href="https://eatingtheworld.net/" target="_blank">Eating the World</a>.)
h3 Upcoming Countries h3 Upcoming Countries
ul ul
li July 2024 - <a href="/food/c/FR">France</a> li July 2024 - <a href="/food/c/FR">France</a>

@ -2,20 +2,20 @@ extends ../template_70s
block title block title
if title if title
title #{title} | Eating the World title #{title} | World Plate Adventures
else else
title Eating the World title World Plate Adventures
block content block content
.container#top .container#top
.inner.full .inner.full
.centered-content .centered-content
h2(style='font-size: 26pt; padding-top: 20px') Eating the World h2(style='font-size: 26pt; padding-top: 20px') World Plate Adventures
ul.inline-nav ul.inline-nav
li li
a.button(href=route('/food')) Home a.button(href=route('/food')) Home
li li
a.button(href=route('/food/about')) About ETW a.button(href=route('/food/about')) About WPA
li li
a.button(href=route('/food/archive')) Archive a.button(href=route('/food/archive')) Archive
li li

@ -9,7 +9,7 @@ block meta
meta(property='og:type' content='article') meta(property='og:type' content='article')
meta(property='og:url' content=blogUrl(post)) meta(property='og:url' content=blogUrl(post))
meta(property='og:title' content=post.title) meta(property='og:title' content=post.title)
meta(property='og:site_name' content='Eating the World') meta(property='og:site_name' content='World Plate Adventures')
meta(property='og:description' content=post.title) meta(property='og:description' content=post.title)
meta(property='og:locale' content='en_US') meta(property='og:locale' content='en_US')
// fixme: description, og:image // fixme: description, og:image

@ -2,7 +2,7 @@ extends page
block append food-content block append food-content
.centered-content .centered-content
p Welcome! Eating the World is a lifetime exploration of international food. See our progress on the map below. p Welcome! World Plate Adventures is a lifetime exploration of international food. See our progress on the map below.
section#map(style='width: 100%; margin: 0; margin-top: 10px; padding: 0; background: var(--c-background-offset-2);') section#map(style='width: 100%; margin: 0; margin-top: 10px; padding: 0; background: var(--c-background-offset-2);')
div#svgMap(style='') div#svgMap(style='')

@ -49,10 +49,10 @@ export class FoodBlog extends AbstractBlog<FoodBlogPostFrontMatter> {
protected createFeed(lastUpdated: Maybe<Date>): Awaitable<RSSFeed.Feed> { protected createFeed(lastUpdated: Maybe<Date>): Awaitable<RSSFeed.Feed> {
const feed = new RSSFeed.Feed({ const feed = new RSSFeed.Feed({
title: 'Eating the World', title: 'World Plate Adventures',
description: 'Eating the World is a lifetime exploration of international food.', description: 'World Plate Adventures is a lifetime exploration of international food.',
id: `${this.routing.getAppUrl()}/food/about`, id: `${this.routing.getAppUrl()}/food/about`,
link: this.routing.getNamedPath('etw').toRemote, link: this.routing.getNamedPath('wpa').toRemote,
language: 'en', language: 'en',
image: this.routing.getAssetPath('favicon', 'apple-touch-icon.png').toRemote, image: this.routing.getAssetPath('favicon', 'apple-touch-icon.png').toRemote,
favicon: this.routing.getAssetPath('favicon', 'favicon.ico').toRemote, favicon: this.routing.getAssetPath('favicon', 'favicon.ico').toRemote,

Loading…
Cancel
Save