Skip to content

Commit

Permalink
chore: remove MailChimp Tutorial all versions (#10959)
Browse files Browse the repository at this point in the history
We are canceling our MailChimp account, which means we need to remove
the Tutorial reminder email signup from all versions of the Docs.

Once this is merged and Docs are rebuilt and deployed, I'll close the
MailChimp account.
  • Loading branch information
thedavidprice committed Jul 18, 2024
1 parent e7a7871 commit dd5c247
Show file tree
Hide file tree
Showing 8 changed files with 0 additions and 374 deletions.
47 changes: 0 additions & 47 deletions docs/docs/tutorial/foreword.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,6 @@

Welcome to Redwood! If you haven't yet, check out the [Redwood README](https://github.com/redwoodjs/redwood/blob/main/README.md) to get a little background on why we created Redwood and the problems it's meant to solve. Redwood brings several existing technologies together for the first time into what we think is the future of database-backed single page applications.

:::info Sign up for tutorial reminders

There's a new JavaScript framework coming out every week, we know it can be hard to keep up. If you'd like some non-spammy emails reminding you to go through the tutorial, give us your email below:

<MailchimpForm />

:::

In this tutorial we're going to build a blog engine. In reality a blog is probably not the ideal candidate for a Redwood app: blog articles can be stored in a CMS and statically generated to HTML files and served as flat files from a CDN (the classic [Jamstack](https://jamstack.org/) use case). But as most developers are familiar with a blog, and it uses all of the features we want to demonstrate, we decided to build one anyway.

If you went through an earlier version of this tutorial you may remember it being split into parts 1 and 2. That was an artifact of the fact that most features demonstrated in part 2 didn't exist in the framework when part 1 was written. Once they were added we created part 2 to contain just those new features. Now that everything is integrated and working well we've moved each section into logically grouped chapters.
Expand Down Expand Up @@ -45,42 +37,3 @@ This tutorial assumes you are using version 7.0.0 or greater of RedwoodJS.
:::

Let's get started!

export const MailchimpForm = () => (
<>
<div id="mc_embed_signup">
<form
action="https://thedavidprice.us19.list-manage.com/subscribe/post?u=0c27354a06a7fdf4d83ce07fc&amp;id=a94da1950a"
method="post"
name="mc-embedded-subscribe-form"
target="_blank"
>
<div style={{ position: 'absolute', left: '-5000px' }} aria-hidden="true">
<input
type="text"
name="b_0c27354a06a7fdf4d83ce07fc_a94da1950a"
tabIndex="-1"
defaultValue=""
/>
</div>
<div style={{ display: 'flex', alignItems: 'center', justify: 'center' }}>
<input
type="email"
defaultValue=""
placeholder="Email Address"
required={true}
name="EMAIL"
style={{ width: '100%', padding: '0.75rem', border: '1px solid #cccccc', borderRadius: '0.25rem', fontSize: '100%' }}
/>
<input
type="submit"
value="Subscribe"
name="subscribe"
style={{ cursor: 'pointer', marginLeft: '0.5rem', padding: '0.8rem 2rem', fontSize: '100%', fontWeight: 'bold', color: '#ffffff', backgroundColor: '#4cb3d4', border: 'none', borderRadius: '0.25rem' }}
/>
</div>
</form>
</div>
</>
)

45 changes: 0 additions & 45 deletions docs/versioned_docs/version-1.x/tutorial/foreword.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,6 @@ In this tutorial we're going to build a blog engine. In reality a blog is probab

If you went through an earlier version of this tutorial you may remember it being split into parts 1 and 2. That was an artifact of the fact that most features demonstrated in part 2 didn't exist in the framework when part 1 was written. Once they were added we created part 2 to contain just those new features. Now that everything is integrated and working well we've moved each section into logically grouped chapters.

## Sign Up for Tutorial Reminders

There's a new Javascript framework coming out every week, we know it can be hard to keep up. If you'd like some non-spammy emails reminding you to go through the tutorial, give us your email below:

<MailchimpForm />

## Callouts

You'll find some callouts throughout the text to draw your attention:
Expand Down Expand Up @@ -43,42 +37,3 @@ This tutorial assumes you are using version 1.0.0 or greater of RedwoodJS.
:::

Let's get started!

export const MailchimpForm = () => (
<>
<div id="mc_embed_signup">
<form
action="https://thedavidprice.us19.list-manage.com/subscribe/post?u=0c27354a06a7fdf4d83ce07fc&amp;id=a94da1950a"
method="post"
name="mc-embedded-subscribe-form"
target="_blank"
>
<div style={{ position: 'absolute', left: '-5000px' }} aria-hidden="true">
<input
type="text"
name="b_0c27354a06a7fdf4d83ce07fc_a94da1950a"
tabIndex="-1"
defaultValue=""
/>
</div>
<div style={{ display: 'flex', alignItems: 'center', justify: 'center' }}>
<input
type="email"
defaultValue=""
placeholder="Email Address"
required={true}
name="EMAIL"
style={{ width: '100%', padding: '0.75rem', border: '1px solid #cccccc', borderRadius: '0.25rem', fontSize: '100%' }}
/>
<input
type="submit"
value="Subscribe"
name="subscribe"
style={{ cursor: 'pointer', marginLeft: '0.5rem', padding: '0.8rem 2rem', fontSize: '100%', fontWeight: 'bold', color: '#ffffff', backgroundColor: '#4cb3d4', border: 'none', borderRadius: '0.25rem' }}
/>
</div>
</form>
</div>
</>
)

47 changes: 0 additions & 47 deletions docs/versioned_docs/version-2.x/tutorial/foreword.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,6 @@

Welcome to Redwood! If you haven't yet, check out the [Redwood README](https://github.com/redwoodjs/redwood/blob/main/README.md) to get a little background on why we created Redwood and the problems it's meant to solve. Redwood brings several existing technologies together for the first time into what we think is the future of database-backed single page applications.

:::info Sign up for tutorial reminders

There's a new Javascript framework coming out every week, we know it can be hard to keep up. If you'd like some non-spammy emails reminding you to go through the tutorial, give us your email below:

<MailchimpForm />

:::

In this tutorial we're going to build a blog engine. In reality a blog is probably not the ideal candidate for a Redwood app: blog articles can be stored in a CMS and statically generated to HTML files and served as flat files from a CDN (the classic [Jamstack](https://jamstack.org/) use case). But as most developers are familiar with a blog, and it uses all of the features we want to demonstrate, we decided to build one anyway.

If you went through an earlier version of this tutorial you may remember it being split into parts 1 and 2. That was an artifact of the fact that most features demonstrated in part 2 didn't exist in the framework when part 1 was written. Once they were added we created part 2 to contain just those new features. Now that everything is integrated and working well we've moved each section into logically grouped chapters.
Expand Down Expand Up @@ -45,42 +37,3 @@ This tutorial assumes you are using version 1.0.0 or greater of RedwoodJS.
:::

Let's get started!

export const MailchimpForm = () => (
<>
<div id="mc_embed_signup">
<form
action="https://thedavidprice.us19.list-manage.com/subscribe/post?u=0c27354a06a7fdf4d83ce07fc&amp;id=a94da1950a"
method="post"
name="mc-embedded-subscribe-form"
target="_blank"
>
<div style={{ position: 'absolute', left: '-5000px' }} aria-hidden="true">
<input
type="text"
name="b_0c27354a06a7fdf4d83ce07fc_a94da1950a"
tabIndex="-1"
defaultValue=""
/>
</div>
<div style={{ display: 'flex', alignItems: 'center', justify: 'center' }}>
<input
type="email"
defaultValue=""
placeholder="Email Address"
required={true}
name="EMAIL"
style={{ width: '100%', padding: '0.75rem', border: '1px solid #cccccc', borderRadius: '0.25rem', fontSize: '100%' }}
/>
<input
type="submit"
value="Subscribe"
name="subscribe"
style={{ cursor: 'pointer', marginLeft: '0.5rem', padding: '0.8rem 2rem', fontSize: '100%', fontWeight: 'bold', color: '#ffffff', backgroundColor: '#4cb3d4', border: 'none', borderRadius: '0.25rem' }}
/>
</div>
</form>
</div>
</>
)

47 changes: 0 additions & 47 deletions docs/versioned_docs/version-3.x/tutorial/foreword.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,6 @@

Welcome to Redwood! If you haven't yet, check out the [Redwood README](https://github.com/redwoodjs/redwood/blob/main/README.md) to get a little background on why we created Redwood and the problems it's meant to solve. Redwood brings several existing technologies together for the first time into what we think is the future of database-backed single page applications.

:::info Sign up for tutorial reminders

There's a new Javascript framework coming out every week, we know it can be hard to keep up. If you'd like some non-spammy emails reminding you to go through the tutorial, give us your email below:

<MailchimpForm />

:::

In this tutorial we're going to build a blog engine. In reality a blog is probably not the ideal candidate for a Redwood app: blog articles can be stored in a CMS and statically generated to HTML files and served as flat files from a CDN (the classic [Jamstack](https://jamstack.org/) use case). But as most developers are familiar with a blog, and it uses all of the features we want to demonstrate, we decided to build one anyway.

If you went through an earlier version of this tutorial you may remember it being split into parts 1 and 2. That was an artifact of the fact that most features demonstrated in part 2 didn't exist in the framework when part 1 was written. Once they were added we created part 2 to contain just those new features. Now that everything is integrated and working well we've moved each section into logically grouped chapters.
Expand Down Expand Up @@ -45,42 +37,3 @@ This tutorial assumes you are using version 1.0.0 or greater of RedwoodJS.
:::

Let's get started!

export const MailchimpForm = () => (
<>
<div id="mc_embed_signup">
<form
action="https://thedavidprice.us19.list-manage.com/subscribe/post?u=0c27354a06a7fdf4d83ce07fc&amp;id=a94da1950a"
method="post"
name="mc-embedded-subscribe-form"
target="_blank"
>
<div style={{ position: 'absolute', left: '-5000px' }} aria-hidden="true">
<input
type="text"
name="b_0c27354a06a7fdf4d83ce07fc_a94da1950a"
tabIndex="-1"
defaultValue=""
/>
</div>
<div style={{ display: 'flex', alignItems: 'center', justify: 'center' }}>
<input
type="email"
defaultValue=""
placeholder="Email Address"
required={true}
name="EMAIL"
style={{ width: '100%', padding: '0.75rem', border: '1px solid #cccccc', borderRadius: '0.25rem', fontSize: '100%' }}
/>
<input
type="submit"
value="Subscribe"
name="subscribe"
style={{ cursor: 'pointer', marginLeft: '0.5rem', padding: '0.8rem 2rem', fontSize: '100%', fontWeight: 'bold', color: '#ffffff', backgroundColor: '#4cb3d4', border: 'none', borderRadius: '0.25rem' }}
/>
</div>
</form>
</div>
</>
)

47 changes: 0 additions & 47 deletions docs/versioned_docs/version-4.x/tutorial/foreword.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,6 @@

Welcome to Redwood! If you haven't yet, check out the [Redwood README](https://github.com/redwoodjs/redwood/blob/main/README.md) to get a little background on why we created Redwood and the problems it's meant to solve. Redwood brings several existing technologies together for the first time into what we think is the future of database-backed single page applications.

:::info Sign up for tutorial reminders

There's a new Javascript framework coming out every week, we know it can be hard to keep up. If you'd like some non-spammy emails reminding you to go through the tutorial, give us your email below:

<MailchimpForm />

:::

In this tutorial we're going to build a blog engine. In reality a blog is probably not the ideal candidate for a Redwood app: blog articles can be stored in a CMS and statically generated to HTML files and served as flat files from a CDN (the classic [Jamstack](https://jamstack.org/) use case). But as most developers are familiar with a blog, and it uses all of the features we want to demonstrate, we decided to build one anyway.

If you went through an earlier version of this tutorial you may remember it being split into parts 1 and 2. That was an artifact of the fact that most features demonstrated in part 2 didn't exist in the framework when part 1 was written. Once they were added we created part 2 to contain just those new features. Now that everything is integrated and working well we've moved each section into logically grouped chapters.
Expand Down Expand Up @@ -45,42 +37,3 @@ This tutorial assumes you are using version 1.0.0 or greater of RedwoodJS.
:::

Let's get started!

export const MailchimpForm = () => (
<>
<div id="mc_embed_signup">
<form
action="https://thedavidprice.us19.list-manage.com/subscribe/post?u=0c27354a06a7fdf4d83ce07fc&amp;id=a94da1950a"
method="post"
name="mc-embedded-subscribe-form"
target="_blank"
>
<div style={{ position: 'absolute', left: '-5000px' }} aria-hidden="true">
<input
type="text"
name="b_0c27354a06a7fdf4d83ce07fc_a94da1950a"
tabIndex="-1"
defaultValue=""
/>
</div>
<div style={{ display: 'flex', alignItems: 'center', justify: 'center' }}>
<input
type="email"
defaultValue=""
placeholder="Email Address"
required={true}
name="EMAIL"
style={{ width: '100%', padding: '0.75rem', border: '1px solid #cccccc', borderRadius: '0.25rem', fontSize: '100%' }}
/>
<input
type="submit"
value="Subscribe"
name="subscribe"
style={{ cursor: 'pointer', marginLeft: '0.5rem', padding: '0.8rem 2rem', fontSize: '100%', fontWeight: 'bold', color: '#ffffff', backgroundColor: '#4cb3d4', border: 'none', borderRadius: '0.25rem' }}
/>
</div>
</form>
</div>
</>
)

47 changes: 0 additions & 47 deletions docs/versioned_docs/version-5.x/tutorial/foreword.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,6 @@

Welcome to Redwood! If you haven't yet, check out the [Redwood README](https://github.com/redwoodjs/redwood/blob/main/README.md) to get a little background on why we created Redwood and the problems it's meant to solve. Redwood brings several existing technologies together for the first time into what we think is the future of database-backed single page applications.

:::info Sign up for tutorial reminders

There's a new JavaScript framework coming out every week, we know it can be hard to keep up. If you'd like some non-spammy emails reminding you to go through the tutorial, give us your email below:

<MailchimpForm />

:::

In this tutorial we're going to build a blog engine. In reality a blog is probably not the ideal candidate for a Redwood app: blog articles can be stored in a CMS and statically generated to HTML files and served as flat files from a CDN (the classic [Jamstack](https://jamstack.org/) use case). But as most developers are familiar with a blog, and it uses all of the features we want to demonstrate, we decided to build one anyway.

If you went through an earlier version of this tutorial you may remember it being split into parts 1 and 2. That was an artifact of the fact that most features demonstrated in part 2 didn't exist in the framework when part 1 was written. Once they were added we created part 2 to contain just those new features. Now that everything is integrated and working well we've moved each section into logically grouped chapters.
Expand Down Expand Up @@ -45,42 +37,3 @@ This tutorial assumes you are using version 5.0.0 or greater of RedwoodJS.
:::

Let's get started!

export const MailchimpForm = () => (
<>
<div id="mc_embed_signup">
<form
action="https://thedavidprice.us19.list-manage.com/subscribe/post?u=0c27354a06a7fdf4d83ce07fc&amp;id=a94da1950a"
method="post"
name="mc-embedded-subscribe-form"
target="_blank"
>
<div style={{ position: 'absolute', left: '-5000px' }} aria-hidden="true">
<input
type="text"
name="b_0c27354a06a7fdf4d83ce07fc_a94da1950a"
tabIndex="-1"
defaultValue=""
/>
</div>
<div style={{ display: 'flex', alignItems: 'center', justify: 'center' }}>
<input
type="email"
defaultValue=""
placeholder="Email Address"
required={true}
name="EMAIL"
style={{ width: '100%', padding: '0.75rem', border: '1px solid #cccccc', borderRadius: '0.25rem', fontSize: '100%' }}
/>
<input
type="submit"
value="Subscribe"
name="subscribe"
style={{ cursor: 'pointer', marginLeft: '0.5rem', padding: '0.8rem 2rem', fontSize: '100%', fontWeight: 'bold', color: '#ffffff', backgroundColor: '#4cb3d4', border: 'none', borderRadius: '0.25rem' }}
/>
</div>
</form>
</div>
</>
)

Loading

0 comments on commit dd5c247

Please sign in to comment.