From bfcd8c8713663cb1845e5dc45ffc769de07b5510 Mon Sep 17 00:00:00 2001 From: garrettmills Date: Sun, 7 Jul 2024 00:30:47 -0400 Subject: [PATCH] Rename "Eating The World" to "World Plate Adventures" to avoid conflict with eatingtheworld.net --- src/app/http/routes/app.routes.ts | 2 +- src/app/resources/views/food/about.pug | 8 +++++--- src/app/resources/views/food/page.pug | 8 ++++---- src/app/resources/views/food/post.pug | 2 +- src/app/resources/views/food/welcome.pug | 2 +- src/app/services/blog/FoodBlog.service.ts | 6 +++--- 6 files changed, 15 insertions(+), 13 deletions(-) diff --git a/src/app/http/routes/app.routes.ts b/src/app/http/routes/app.routes.ts index a0b10f8..f9ecd66 100644 --- a/src/app/http/routes/app.routes.ts +++ b/src/app/http/routes/app.routes.ts @@ -67,7 +67,7 @@ Route Route.get('/food') .pre(SiteTheme) .calls(FoodBlog, fb => fb.index) - .alias('etw') + .alias('wpa') Route.get('/food/about') .pre(SiteTheme) diff --git a/src/app/resources/views/food/about.pug b/src/app/resources/views/food/about.pug index c4c4123..5bc9362 100644 --- a/src/app/resources/views/food/about.pug +++ b/src/app/resources/views/food/about.pug @@ -2,7 +2,7 @@ extends page block append food-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;') @@ -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 The biggest challenge I've run into is just how immense the world of food is, which can make it hard to decide on 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 decide on 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 very long-term project. + p (Not to be confused with the excellent Eating the World.) + h3 Upcoming Countries ul li July 2024 - France diff --git a/src/app/resources/views/food/page.pug b/src/app/resources/views/food/page.pug index db208cc..a2d72ff 100644 --- a/src/app/resources/views/food/page.pug +++ b/src/app/resources/views/food/page.pug @@ -2,20 +2,20 @@ extends ../template_70s block title if title - title #{title} | Eating the World + title #{title} | World Plate Adventures else - title Eating the World + title World Plate Adventures block content .container#top .inner.full .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 li a.button(href=route('/food')) Home li - a.button(href=route('/food/about')) About ETW + a.button(href=route('/food/about')) About WPA li a.button(href=route('/food/archive')) Archive li diff --git a/src/app/resources/views/food/post.pug b/src/app/resources/views/food/post.pug index 66fdbd9..721c2bc 100644 --- a/src/app/resources/views/food/post.pug +++ b/src/app/resources/views/food/post.pug @@ -9,7 +9,7 @@ block meta meta(property='og:type' content='article') meta(property='og:url' content=blogUrl(post)) 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:locale' content='en_US') // fixme: description, og:image diff --git a/src/app/resources/views/food/welcome.pug b/src/app/resources/views/food/welcome.pug index d0045ff..8591ae0 100644 --- a/src/app/resources/views/food/welcome.pug +++ b/src/app/resources/views/food/welcome.pug @@ -2,7 +2,7 @@ extends page block append food-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);') div#svgMap(style='') diff --git a/src/app/services/blog/FoodBlog.service.ts b/src/app/services/blog/FoodBlog.service.ts index 2ba0d90..397f8d0 100644 --- a/src/app/services/blog/FoodBlog.service.ts +++ b/src/app/services/blog/FoodBlog.service.ts @@ -49,10 +49,10 @@ export class FoodBlog extends AbstractBlog { protected createFeed(lastUpdated: Maybe): Awaitable { const feed = new RSSFeed.Feed({ - title: 'Eating the World', - description: 'Eating the World is a lifetime exploration of international food.', + title: 'World Plate Adventures', + description: 'World Plate Adventures is a lifetime exploration of international food.', id: `${this.routing.getAppUrl()}/food/about`, - link: this.routing.getNamedPath('etw').toRemote, + link: this.routing.getNamedPath('wpa').toRemote, language: 'en', image: this.routing.getAssetPath('favicon', 'apple-touch-icon.png').toRemote, favicon: this.routing.getAssetPath('favicon', 'favicon.ico').toRemote,