Skip to content
This repository was archived by the owner on Jul 11, 2023. It is now read-only.

Commit db427fe

Browse files
chore(capacitor blog link): modify blog links in nav and footer to ne… (#459)
* chore(capacitor blog link): modify blog links in nav and footer to new cap blog * update more blog links Co-authored-by: jared <[email protected]>
1 parent 76eb5eb commit db427fe

9 files changed

+12
-9
lines changed

pages/blog/announcing-capacitor-1-0.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ Today I’m thrilled to announce the 1.0 release of [Capacitor](/), Ionic’s ne
1111

1212
We documented this momentous occasion over on the Ionic blog, complete with a comparison to Cordova and where Capacitor is headed from here.
1313

14-
Take a look: [https://ionicframework.com/blog/announcing-capacitor-1-0/](https://ionicframework.com/blog/announcing-capacitor-1-0/).
14+
Take a look: [https://ionic.io/blog/announcing-capacitor-1-0/](https://ionic.io/blog/announcing-capacitor-1-0/).

pages/blog/announcing-capacitor-2-0.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ We documented the whole update and talked about what's next for Capacitor over o
2020

2121
Check it out:
2222

23-
[https://ionicframework.com/blog/announcing-capacitor-2-0/](https://ionicframework.com/blog/announcing-capacitor-2-0/)
23+
[https://ionic.io/blog/announcing-capacitor-2-0/](https://ionic.io/blog/announcing-capacitor-2-0/)

pages/blog/announcing-capacitor-3-0-rc.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ If you're curious how to migrate to Capacitor 3.0, check out the [migration guid
2020
- TypeScript config file
2121
- Autoloading of Android plugins
2222

23-
In addition to the [Beta release post](https://capacitorjs.com/blog/announcing-capacitor-3-0-beta), which includes more details on these changes, we've also written about the [plugin upgrade process here](https://ionicframework.com/blog/understanding-changes-to-capacitor-3-core-plugins/). Long story short, install the plugins you need and change your import statements
23+
In addition to the [Beta release post](https://capacitorjs.com/blog/announcing-capacitor-3-0-beta), which includes more details on these changes, we've also written about the [plugin upgrade process here](https://ionic.io/blog/understanding-changes-to-capacitor-3-core-plugins/). Long story short, install the plugins you need and change your import statements
2424

2525
```bash
2626
npm install @capacitor/<plugin>

pages/blog/bypassing-cors-with-the-http-plugin.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -435,7 +435,7 @@ We covered a lot of concepts from the Capacitor Community HTTP Plugin today incl
435435

436436
What’s next in the exciting world of cross-platform Vue apps? If you’re short on ideas, here’s a few suggestions for next steps
437437

438-
- [Offline first](https://ionicframework.com/blog/best-practices-for-building-offline-apps): Try persisting state using another method, such as service-worker caching
438+
- [Offline first](https://ionic.io/blog/best-practices-for-building-offline-apps): Try persisting state using another method, such as service-worker caching
439439
- PWA/mobile: Try deploying the app to your phone as a [Progressive Web App](https://ionicframework.com/docs/vue/your-first-app/6-deploying-mobile) or a native [Android/iOS one](https://ionicframework.com/docs/vue/your-first-app/6-deploying-mobile)
440440
- Note: If you opted to generate your own project for this tutorial instead of cloning from the repo, you may need to follow some [additional installation steps](https://github.com/capacitor-community/http#installation) to get the HTTP Plugin working on Android
441441
- Loading state: How might you save the state of the app such that if the user exits while advice is fading in or out, the transition will resume at the same spot tnext time they reopen the app?

pages/blog/native-react-apps-without-react-native.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ This simply isn’t possible with React Native. Most popular React UI libraries
3939

4040
One additional bonus feature of Capacitor is that it works on the web for Progressive Web Apps. That means an app using Capacitor can access many of the same APIs on native mobile but on the web instead. For example, the [Camera](https://capacitorjs.com/docs/apis/camera) and [Share](https://capacitorjs.com/docs/apis/share) APIs work across iOS, Android, and the web with the same code.
4141

42-
With this capability, teams often can build and ship on three platforms on day one, or even embrace [Progressive Web App First Development](https://ionicframework.com/blog/forget-mobile-first-progressive-web-app-first-is-the-future/), by using Capacitor.
42+
With this capability, teams often can build and ship on three platforms on day one, or even embrace [Progressive Web App First Development](https://ionic.io/blog/forget-mobile-first-progressive-web-app-first-is-the-future/), by using Capacitor.
4343

4444
## Transform your React Web App into Native with Capacitor
4545

src/components/capacitor-site-footer/capacitor-site-footer.tsx

+4-1
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,10 @@ export class CapacitorSiteFooter {
115115
</a>
116116
</li>
117117
<li>
118-
<a class="ui-paragraph-4" href="/blog">
118+
<a
119+
class="ui-paragraph-4"
120+
href="https://ionic.io/blog/tag/capacitor"
121+
>
119122
Blog
120123
</a>
121124
</li>

src/components/capacitor-site-header/capacitor-site-header.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ export class SiteHeader implements ComponentInterface {
227227
Community
228228
</a>
229229
<a
230-
{...href('/blog')}
230+
{...href('https://ionic.io/blog/tag/capacitor')}
231231
class="ui-paragraph-4"
232232
ref={el => (this.links.blog = el)}
233233
>

src/pages/landing-page/components/top-parallax.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ export class LandingPage {
7373
class="reveal"
7474
kind="round"
7575
color="indigo"
76-
href="https://ionicframework.com/blog/announcing-capacitor-3-0/"
76+
href="https://ionic.io/blog/announcing-capacitor-3-0/"
7777
anchor={true}
7878
>
7979
Read the Blog post <span>{'->'}</span>

vercel.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"redirects": [
1414
{
1515
"source": "/3",
16-
"destination": "https://ionicframework.com/blog/announcing-capacitor-3-0/"
16+
"destination": "https://ionic.io/blog/announcing-capacitor-3-0/"
1717
},
1818
{
1919
"source": "/forum",

0 commit comments

Comments
 (0)