diff --git a/src/.vuepress/config.js b/src/.vuepress/config.js index b5d7d90b..b2b002be 100644 --- a/src/.vuepress/config.js +++ b/src/.vuepress/config.js @@ -8,7 +8,7 @@ const IPFS_DEPLOY = process.env.IPFS_DEPLOY === 'true' || false module.exports = { title: 'IPFS Blog & News', description: - 'This is the IPFS Starlog, a series of communications about the IPFS Project.', + 'All the latest information about the IPFS Project in one place: blog posts, release notes, videos, news coverage, and more.', domain: CANONICAL_BASE, authors, locales: { @@ -16,7 +16,7 @@ module.exports = { lang: 'en-US', title: 'IPFS Blog & News', description: - 'This is the IPFS Starlog, a series of communications about the IPFS Project.', + 'All the latest information about the IPFS Project in one place: blog posts, release notes, videos, news coverage, and more.', }, }, head: require('./config/head'), @@ -57,10 +57,10 @@ module.exports = { }, ], footerLinks: [ - { text: 'Blog & News', link: '/' }, + { text: 'Blog & news', link: '/' }, { text: 'Press', link: 'https://ipfs.io/media/' }, { - text: 'Code of Conduct', + text: 'Code of conduct', link: 'https://github.com/ipfs/community/blob/master/code-of-conduct.md', }, @@ -145,8 +145,7 @@ module.exports = { itemLayout: 'BlogPost', frontmatter: { title: 'Home', - description: - 'This is the IPFS Starlog, a series of communications about the IPFS Project.', + description: 'Blog, news & more', }, pagination: { lengthPerPage: Number.MAX_SAFE_INTEGER, diff --git a/src/.vuepress/public/site.webmanifest b/src/.vuepress/public/site.webmanifest index beacf916..740a6dc8 100644 --- a/src/.vuepress/public/site.webmanifest +++ b/src/.vuepress/public/site.webmanifest @@ -1,7 +1,7 @@ { "name": "IPFS blog", "short_name": "IPFS blog", - "description": "This is the IPFS Starlog, a series of communications about the IPFS Project.", + "description": "All the latest information about the IPFS Project in one place: blog posts, release notes, videos, news coverage, and more.", "dir": "auto", "lang": "en-US", "display": "minimal-ui", diff --git a/src/.vuepress/theme/components/FooterLegal.vue b/src/.vuepress/theme/components/FooterLegal.vue index a3d5a051..3b074b4a 100644 --- a/src/.vuepress/theme/components/FooterLegal.vue +++ b/src/.vuepress/theme/components/FooterLegal.vue @@ -17,24 +17,28 @@ | Except as noted, content licensed CC-BY 3.0 | Terms | Privacy diff --git a/src/.vuepress/theme/components/blog/LinksAndSocial.vue b/src/.vuepress/theme/components/blog/LinksAndSocial.vue index a67b3e0a..2bd0f6e1 100644 --- a/src/.vuepress/theme/components/blog/LinksAndSocial.vue +++ b/src/.vuepress/theme/components/blog/LinksAndSocial.vue @@ -1,9 +1,9 @@ - - + + Event organizer, content creator, or journalist? @@ -11,13 +11,13 @@ > an item or view the IPFS press kit. - + Prefer your news a different way? Try our {{ $frontmatter.description }} - + All the up-to-date IPFS info you need in one place, from blog posts and release notes to videos, tutorials, news coverage, and events. @@ -29,6 +29,7 @@ :key="page.key" class="mb-4" :card="page" + all /> Load More @@ -62,7 +63,7 @@ import { getTags } from '@theme/util/tagUtils' import { parseProtectedPost, checkItem } from '@theme/util/blogUtils' const protectedCardTypes = ['newslink'] -const defaultCategory = 'Blog Post' +const defaultCategory = 'Blog posts' export default { name: 'BlogIndex', @@ -74,13 +75,13 @@ export default { }, data: function () { return { - categories: ['All Content', defaultCategory, ...protectedCardTypes], + categories: ['All content', defaultCategory, ...protectedCardTypes], numberOfPagesToShow: 21, infiniteScroll: false, delayValues: [0, 0.15, 0.3], breadcrumbs: [ { title: 'Home', link: 'https://ipfs.io/', external: true }, - { title: 'Blog & News' }, + { title: 'Blog & news' }, ], } },