Skip to content

Commit 27f05c6

Browse files
committed
use different name in frontmatter
1 parent ba810de commit 27f05c6

File tree

254 files changed

+299
-301
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

254 files changed

+299
-301
lines changed

src/components/card/card.jsx

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,23 +4,21 @@ const Card = (props) => {
44
return (
55
<div className={`${styles.root} ${props.extraClasses}`}>
66
{props.logo && (
7-
<a href={props.url} className={styles.logoHeader}>
7+
<a href={props.link} className={styles.logoHeader}>
88
<img
99
className={styles.logoImage}
1010
src={`/logos/${props.logo}`}
1111
alt={`Logo for ${props.title}`}
1212
/>
1313
</a>
1414
)}
15-
1615
{props.icon && (
1716
<img className={styles.icon} src={`/images/${props.icon}`} alt="" />
1817
)}
19-
2018
<div className={styles.cardContent}>
2119
<h3 className={styles.homePageLink}>
22-
{props.url && <a href={props.url}>{props.title}</a>}
23-
{!props.url && <>{props.title}</>}
20+
{props.link && <a href={props.link}>{props.title}</a>}
21+
{!props.link && <>{props.title}</>}
2422
</h3>
2523
{props.author && (
2624
<p>

src/components/card/card.module.scss

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -58,16 +58,16 @@
5858
&::after {
5959
top: 12px;
6060
right: 12px;
61-
mask: url(/img/arrow-up-right.svg);
62-
mask-size: cover;
61+
-webkit-mask: url(/images/arrow-up-right.svg);
62+
mask: url(/images/arrow-up-right.svg);
63+
mask-size: 100px;
6364
background: black;
6465
width: 12px;
6566
height: 12px;
6667
}
6768
&:hover,
6869
&:focus,
6970
[data-focus] {
70-
outline: 2px solid blue;
7171
&::before {
7272
background: linear-gradient(to bottom left, #9253be, #f0954d);
7373
}
@@ -93,7 +93,7 @@
9393
width: 1rem;
9494
height: 1rem;
9595
background: #4caa9f;
96-
mask: url(/img/netlify-cms.png);
96+
mask: url(/images/netlify-cms.png);
9797
mask-size: cover;
9898
position: relative;
9999
top: 2px;

src/components/footer/footer.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ const Footer = (props) => (
1414
)}
1515

1616
<br />
17-
<img src="/img/footer-sep.svg" alt="" className={styles.footerSep} />
17+
<img src="/images/footer-sep.svg" alt="" className={styles.footerSep} />
1818
<p>
1919
I'm a serverless noob. Got a correction? Something to add?{" "}
2020
<a href="https://github.com/CSS-Tricks/serverless">

src/components/servicePage/servicePage.astro

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ const { data, pageTitle, pageHeader, pageSubHeader, intro } = Astro.props;
2020
title={post.title}
2121
key={post.title}
2222
html={post.content.html}
23-
url={post.url}
23+
link={post.link}
2424
extraClasses="service-card"
2525
/>
2626
))}
@@ -36,7 +36,7 @@ const { data, pageTitle, pageHeader, pageSubHeader, intro } = Astro.props;
3636
background-image: url("https://res.cloudinary.com/css-tricks/image/upload/c_scale,f_auto,q_auto,w_800/v1558127391/satellite_wezm7k.png"),
3737
url("https://res.cloudinary.com/css-tricks/image/upload/c_scale,f_auto,q_auto,w_1200/v1558127158/cloud3_v43wo8.png"),
3838
url("https://res.cloudinary.com/css-tricks/image/upload/c_scale,f_auto,q_auto,w_1200/v1558127567/earth_zxu0ww.png"),
39-
url("/img/stars.svg");
39+
url("/images/stars.svg");
4040
background-size: 30%, 60%, 50%, 90%;
4141
background-position: top right 15%, top right -40px, top 85% right,
4242
top center;

src/content/auth/amplify.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
path: "services/auth/amplify"
33
title: "Amplify Framework"
4-
url: "https://aws-amplify.github.io/docs/js/authentication"
4+
link: "https://aws-amplify.github.io/docs/js/authentication"
55
logo: "amplify.jpg"
66
---
77

src/content/auth/auth0.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
path: "services/auth/auth0"
33
title: "Auth0"
4-
url: "https://auth0.com/"
4+
link: "https://auth0.com/"
55
logo: "auth0.png"
66
---
77

src/content/auth/firebase-auth.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
path: "services/auth/firebase"
33
title: "Firebase Authentication"
4-
url: "https://firebase.google.com/products/auth"
4+
link: "https://firebase.google.com/products/auth"
55
logo: "firebase.png"
66
---
77

src/content/auth/netlify.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
path: "services/auth/netlify"
33
title: "Netlify Identity"
4-
url: "https://www.netlify.com/docs/identity/"
4+
link: "https://www.netlify.com/docs/identity/"
55
logo: "netlify.png"
66
---
77

src/content/auth/okta.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
path: "services/auth/okta"
33
title: "Okta"
4-
url: "https://developer.okta.com/"
4+
link: "https://developer.okta.com/"
55
logo: "okta.png"
66
---
77

src/content/auth/userfront.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
path: services/auth/userfront
33
title: Userfront
4-
url: https://userfront.com
4+
link: https://userfront.com
55
logo: userfront.png
66
---
77

src/content/cicd/begin.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
path: "services/major/begin"
33
title: "Begin"
4-
url: "https://begin.com/"
4+
link: "https://begin.com/"
55
logo: "begin-logo.png"
66
tags: ["Cloud Functions", "Hosting", "Local Development", "Open core"]
77
---

src/content/cicd/netlify.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
path: "services/major/netlify"
33
title: "Netlify"
4-
url: "https://www.netlify.com/"
4+
link: "https://www.netlify.com/"
55
logo: "netlify.png"
66
tags: ["Cloud Functions", "Hosting", "Local Development"]
77
---

src/content/cicd/vercel.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
path: services/major/vercel
33
title: Vercel
4-
url: "https://vercel.com/"
4+
link: "https://vercel.com/"
55
logo: vercel.svg
66
---
77

src/content/cmss/agilitycms.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
path: "services/cmss/agilitycms"
33
title: "Agility CMS"
4-
url: "https://agilitycms.com/"
4+
link: "https://agilitycms.com/"
55
logo: "agilitycms.svg"
66
---
77

src/content/cmss/bloomreach.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
path: services/cmss/bloomreach
33
title: Bloomreach
4-
url: https://developers.bloomreach.com/
4+
link: https://developers.bloomreach.com/
55
logo: bloomreach.png
66
---
77

src/content/cmss/buttercms.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
path: "services/cmss/buttercms"
33
title: "ButterCMS"
4-
url: "https://buttercms.com/"
4+
link: "https://buttercms.com/"
55
logo: "buttercms.png"
66
---
77

src/content/cmss/cloudcannon.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
path: "services/cmss/cloudcannon"
33
title: "CloudCannon"
4-
url: "https://cloudcannon.com/"
4+
link: "https://cloudcannon.com/"
55
logo: "cloudcannon.svg"
66
---
77

src/content/cmss/contentful.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
path: "services/cmss/contentful"
33
title: "Contentful"
4-
url: "https://www.contentful.com/"
4+
link: "https://www.contentful.com/"
55
logo: "contentful.png"
66
---
77

src/content/cmss/cosmicjs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
path: services/cmss/cosmicjs
33
title: Cosmic
4-
url: https://www.cosmicjs.com
4+
link: https://www.cosmicjs.com
55
logo: cosmicjs.svg
66
---
77

src/content/cmss/craftcms.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
path: "services/cmss/craftcms"
33
title: "Craft CMS"
4-
url: "https://craftcms.com/"
4+
link: "https://craftcms.com/"
55
logo: "craft_cms.svg"
66
---
77

src/content/cmss/datocms.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
path: "services/cmss/datocms"
33
title: "DatoCMS"
4-
url: "https://www.datocms.com/"
4+
link: "https://www.datocms.com/"
55
logo: "datocms.png"
66
---
77

src/content/cmss/flamelink.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
path: "services/cmss/flamelink"
33
title: "Flamelink"
4-
url: "https://flamelink.io/"
4+
link: "https://flamelink.io/"
55
logo: "flamelink.png"
66
---
77

src/content/cmss/flotiq.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
path: services/cmss/flotiq
33
title: Flotiq
4-
url: https://flotiq.com/
4+
link: https://flotiq.com/
55
logo: flotiq.svg
66
---
77

src/content/cmss/forestry.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
path: "services/cmss/forestry"
33
title: "Forestry"
4-
url: "https://forestry.io/"
4+
link: "https://forestry.io/"
55
logo: "forestry.svg"
66
---
77

src/content/cmss/graphcms.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
path: "services/cmss/graphcms"
33
title: "GraphCMS"
4-
url: "https://graphcms.com/"
4+
link: "https://graphcms.com/"
55
logo: "GraphCMS.svg"
66
---
77

src/content/cmss/kenticocloud.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
path: services/cmss/kenticokontent
33
title: Kentico Kontent
4-
url: "https://www.kontent.ai/"
4+
link: "https://www.kontent.ai/"
55
logo: kentio-kontent.svg
66
---
77

src/content/cmss/lexascms.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
path: services/cmss/lexascms
33
title: LexasCMS
4-
url: https://www.lexascms.com/
4+
link: https://www.lexascms.com/
55
logo: lexascms.svg
66
---
77

src/content/cmss/netlify.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
path: "services/cmss/netlify"
33
title: "Netlify CMS"
4-
url: "https://www.netlifycms.org/"
4+
link: "https://www.netlifycms.org/"
55
logo: "netlify.png"
66
---
77

src/content/cmss/prismic.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
path: "services/cmss/prismic"
33
title: "Prismic"
4-
url: "https://prismic.io/"
4+
link: "https://prismic.io/"
55
logo: "prismic.png"
66
---
77

src/content/cmss/publii.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
path: "services/cmss/publii"
33
title: "Publii"
4-
url: "https://getpublii.com/"
4+
link: "https://getpublii.com/"
55
logo: "publii.svg"
66
---
77

src/content/cmss/sanity.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
path: "services/cmss/sanity"
33
title: "Sanity"
4-
url: "https://www.sanity.io/"
4+
link: "https://www.sanity.io/"
55
logo: "sanity.png"
66
---
77

src/content/cmss/shifter.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
path: "services/cmss/shifter"
33
title: "Shifter"
4-
url: "https://getshifter.io/"
4+
link: "https://getshifter.io/"
55
logo: "shifter.png"
66
---
77

src/content/cmss/storyblok.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
path: "services/cmss/storyblok"
33
title: "Storyblok"
4-
url: "https://www.storyblok.com/"
4+
link: "https://www.storyblok.com/"
55
logo: "storyblok.png"
66
---
77

src/content/cmss/strapi.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
---
2-
path: 'services/cmss/strapi'
3-
title: 'Strapi'
4-
url: 'https://strapi.io/'
5-
logo: '/images/strapi.png'
2+
path: "services/cmss/strapi"
3+
title: "Strapi"
4+
link: "https://strapi.io/"
5+
logo: "/images/strapi.png"
66
---
77

88
Strapi is an open source Headless CMS that is open source MIT licensed, self-hosted, customizable, has RESTful or GraphQL APIs, is 100% JavaScript (built on Node.js) and extensible by design.

src/content/cmss/takeshape.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
path: "services/cmss/takeshape"
33
title: "Take Shape"
4-
url: "https://www.takeshape.io/"
4+
link: "https://www.takeshape.io/"
55
logo: "takeshape.png"
66
---
77

src/content/cmss/webiny.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
path: "services/cmss/webiny"
33
title: "Webiny"
4-
url: "https://www.webiny.com/"
4+
link: "https://www.webiny.com/"
55
logo: "webiny.svg"
66
---
77

src/content/cmss/wordpress.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
path: "services/cmss/wordpress"
33
title: "WordPress (REST API)"
4-
url: "https://developer.wordpress.com/docs/api/"
4+
link: "https://developer.wordpress.com/docs/api/"
55
logo: "wordpress.svg"
66
---
77

src/content/data/8base.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
path: "services/data/8base"
33
title: "8base"
4-
url: "https://www.8base.com/"
4+
link: "https://www.8base.com/"
55
logo: "8base.svg"
66
---
77

0 commit comments

Comments
 (0)