Minor text/css changes, please edit if awful (#5)

Minor text/css changes
This commit is contained in:
Jessica Schilling
2020-12-30 04:02:10 -07:00
committed by GitHub
parent 40e157f061
commit f32e81493e
7 changed files with 26 additions and 22 deletions
+5 -6
View File
@@ -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,
+1 -1
View File
@@ -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",
@@ -17,24 +17,28 @@
| Except as
<a
class="text-blueGreen hover:underline"
href="https://ipfs.io/legal#report-copyright-infringement-on-the-ipfs-gateway-service"
href="https://protocol.ai/legal/"
target="_blank"
>noted</a
>, content licensed
<a
class="text-blueGreen hover:underline"
href="https://creativecommons.org/licenses/by/3.0/"
target="_blank"
>CC-BY 3.0</a
>
|
<a
class="text-blueGreen hover:underline"
href="https://ipfs.io/legal#terms-of-service"
href="https://protocol.ai/legal/#terms-of-service"
target="_blank"
>Terms</a
>
|
<a
class="text-blueGreen hover:underline"
href="https://ipfs.io/legal#privacy-policy"
href="https://protocol.ai/legal/#privacy-policy"
target="_blank"
>Privacy</a
></span
>
@@ -1,9 +1,9 @@
<template>
<div>
<h2 class="inline-block">
<div class="mb-10">
<h2 class="text-xl mb-2 inline-block">
Event organizer, content creator, or journalist?
<a
class="text-blueGreen hover:underline ml-1 inline-block"
class="text-blueGreen hover:underline inline-block"
href="https://protocol.ai/join"
rel="noopener noreferrer"
>
@@ -11,13 +11,13 @@
>
an item or view the
<a
class="text-blueGreen hover:underline ml-1 inline-block"
class="text-blueGreen hover:underline inline-block"
href="https://ipfs.io/media/"
rel="noopener noreferrer"
>IPFS press kit.</a
>
</h2>
<div class="inline-block md:flex">
<div class="text-xl inline-block md:flex">
Prefer your news a different way? Try our
<a
class="text-blueGreen hover:underline ml-1 inline-block"
@@ -100,7 +100,7 @@ export default {
breadcrumbs() {
return [
{ title: 'Home', link: 'https://ipfs.io/', external: true },
{ title: 'Blog & News', link: '/' },
{ title: 'Blog & news', link: '/' },
{ title: this.title },
]
},
@@ -13,7 +13,7 @@
</div>
<ul
v-if="resolvedTags.length"
class="tags flex flex-wrap"
class="tags mt-2 mb-1 flex flex-wrap"
itemprop="keywords"
>
<li
+6 -5
View File
@@ -6,7 +6,7 @@
<h1 class="type-h1 mt-4">
{{ $frontmatter.description }}
</h1>
<h2 class="mt-8 pr-40 type-h4">
<h2 class="mt-8 type-h4">
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.
</h2>
@@ -29,6 +29,7 @@
:key="page.key"
class="mb-4"
:card="page"
all
/>
</div>
<div
@@ -36,7 +37,7 @@
class="flex justify-center mt-8 pb-4"
>
<button
class="p-2 text-white bg-blueGreen rounded hover:opacity-75"
class="px-3 py-2 text-white text-xl bg-blueGreen rounded hover:opacity-75"
@click="handleLoadMoreClick"
>
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' },
],
}
},