使用Notion和Nobelium搭建博客网站

文摘   2024-07-10 13:00   四川  
点击下方公众号卡片,回复关键字:模板 即可获取Notion模板大全。
最近发现不少朋友问到,怎么能利用Notion来搭建一个自己的博客网站。Notion本身是个超级强大的工具,既能做笔记、任务管理,又能用于团队协作。但是要用它来搭建博客网站却有点儿麻烦,尤其是分享功能比较鸡肋,曝光度也不高。那么,有没有办法既能用Notion的强大编辑能力,又能搭建一个优雅的博客网站呢?
答案是有的,这就是Nobelium。今天就带大家一起探索一下如何用Notion和Nobelium来搭建一个属于自己的博客网站。

# Nobelium简介

Nobelium是一个基于Notion和Nextjs,在Vercel上部署的静态博客系统。它具有以下几个特点:
  • 快速:快速的页面渲染和响应式设计,高效编译器的快速静态页面生成。
  • 多设备支持:在桌面端、移动端一样完美显示。
  • 自动高效免费:部署在免费且快速的Vercel平台,在Notion上的更新自动同步到网页上。
  • 功能全面:支持评论、宽页面、搜索、标签、订阅、网站统计、黑暗模式等等。
  • 美观优雅:使用Tailwind CSS,二次开发容易,自定义性高,可配置项多,支持多语言(包括简体中文)。
我在做一些技术文档翻译时,经常需要快速翻译一些专业术语和长段文字。Notion的富文本编辑能力让我觉得,用它来写博客肯定也是个不错的选择。不过,以前总觉得Notion的分享功能不太行,曝光度也低。自从发现Nobelium这个工具后,简直像是打开了新世界的大门。
不仅能保持Notion的编辑体验,还能快速搭建一个漂亮的博客网站。Nobelium的配置也非常灵活,能满足个性化需求。比如,我可以轻松调整博客的外观、添加评论系统,甚至可以直接从Notion同步内容到博客,真的是省心又方便。接下来就详细讲解一下如何操作。

# 开始部署

要部署Nobelium,你需要一个GitHub账户和一个Notion账户。

搭建Notion数据库

首先,我们需要在Notion中创建一个数据库来存储博客数据。打开Nobelium提供的Notion模板,将模板Duplicate到自己的Notion Workspace中。

然后打开Share to Web,让Nobelium能够访问到数据库中的内容。
如果不希望这个Page公之于众,可以通过Notion Token的方式让Nobelium抓取内容。具体操作大家可以自行搜索,这里不多做解释。

搭建GitHub仓库

接下来,Fork Nobelium GitHub项目。

Fork之后可以编辑仓库代码,首先修改配置文件blog.config.js:
const BLOG = {  title: '核桃Blog',  author: '吃核桃不吐核桃壳',  email: 'zdh883210zdh@gmail.com',  link: 'https://blog-rouge-five.vercel.app/',  description: '为你,千千万万次',  lang: 'zh-CN', // ['en-US', 'zh-CN', 'zh-HK', 'zh-TW', 'ja-JP', 'es-ES']  appearance: 'auto', // ['light', 'dark', 'auto'],  font: 'sans-serif', // ['sans-serif', 'serif']  lightBackground: '#ffffff', // use hex value, don't forget '#' e.g #fffefc  darkBackground: '#18181B', // use hex value, don't forget '#'  path: '', // leave this empty unless you want to deploy Nobelium in a folder  since: 2021, // If leave this empty, current year will be used.  postsPerPage: 7,  sortByDate: false,  showAbout: true,  showArchive: true,  autoCollapsedNavBar: false, // The automatically collapsed navigation bar  ogImageGenerateURL: 'https://og-image-craigary.vercel.app', // The link to generate OG image, don't end with a slash  socialLink: 'https://twitter.com/craigaryhart',  seo: {    keywords: ['Blog', 'Website', 'Notion'],    googleSiteVerification: '' // Remove the value or replace it with your own google site verification code  },  notionPageId: process.env.NOTION_PAGE_ID, // DO NOT CHANGE THIS!!!  notionAccessToken: process.env.NOTION_ACCESS_TOKEN, // Useful if you prefer not to make your database public  analytics: {    provider: '', // Currently we support Google Analytics and Ackee, please fill with 'ga' or 'ackee', leave it empty to disable it.    ackeeConfig: {      tracker: '', // e.g 'https://ackee.craigary.net/tracker.js'      dataAckeeServer: '', // e.g https://ackee.craigary.net , don't end with a slash      domainId: '' // e.g '0e2257a8-54d4-4847-91a1-0311ea48cc7b'    },    gaConfig: {      measurementId: '' // e.g: G-XXXXXXXXXX    }  },  comment: {    // support provider: gitalk, utterances, cusdis    provider: '', // leave it empty if you don't need any comment plugin    gitalkConfig: {      repo: '', // The repository of store comments      owner: '',      admin: [],      clientID: '',      clientSecret: '',      distractionFreeMode: false    },    utterancesConfig: {      repo: ''    },    cusdisConfig: {      appId: '', // data-app-id      host: 'https://cusdis.com', // data-host, change this if you're using self-hosted version      scriptSrc: 'https://cusdis.com/js/cusdis.es.js' // change this if you're using self-hosted version    }  },  isProd: process.env.VERCEL_ENV === 'production' // distinguish between development and production environment (ref: https://vercel.com/docs/environment-variables#system-environment-variables)}// export default BLOGmodule.exports = BLOG
配置完成后,点击Save,Vercel会自动重新编译部署。部署完成后,就可以访问你的博客网站了。

部署到Vercel

打开vercel.com,用GitHub账号登录,登录完成后进入Dashboard。

点击New Project。

选择你刚刚配置的GitHub仓库,设置好环境变量(如NOTION_PAGE_ID等)。
然后点击Deploy开始部署。部署完毕后,你的博客网站就上线了。

# 开始写博客吧

要在博客上发布文章,只需要在Notion数据库中新建一个Page,在Page中写博客,设置一些字段,如日期、slug(文章地址)、状态(Published)、标签、摘要、类型(Post)等。

文章处于Published状态时,只需刷新博客界面,你的文章就会同步到博客上。
用Nobelium搭建博客网站的过程,其实就是把Notion和GitHub、Vercel这几个工具结合起来。听起来步骤有点儿多,但实际上操作起来并不难,特别是对于平时就爱折腾技术的朋友来说,这个过程简直就是一种享受。
Nobelium给了我一种新的创作体验。它让博客的管理和更新变得轻松自如,不用再为繁琐的编辑器而烦恼。通过Notion写文章,再通过Nobelium发布到博客网站,整个流程顺畅又高效。而且,Nobelium的功能也很丰富,像评论系统、标签、搜索等,完全满足了我对博客的各种需求。

# 功能拓展

评论系统

我采用的是Cusdis评论系统,配置简单,无需注册即可评论。打开cusdis.com,用GitHub或Google账号登录,按照提示新建一个Website,获取Embed Code中的data-app-id,然后在GitHub仓库的配置文件blog.config.js中填写:
cusdisConfig: {  appId: '在这里填进你的data-app-id', // data-app-id  host: 'https://cusdis.com', // data-host, change this if you're using self-hosted version  scriptSrc: 'https://cusdis.com/js/cusdis.es.js' // change this if you're using self-hosted version}
保存修改后,Vercel会自动重新编译部署,部署完成后刷新页面即可在文章末尾看到评论区。

# 总结

Notion的编辑能力强大,结合Nobelium后,可以轻松搭建一个美观、功能齐全的博客网站。这不仅解决了Notion分享功能的不足,还能让博客的管理和更新变得更加高效。

虽然个人博客在当代互联网中不一定是最好的内容载体,但重点永远在于内容创作。通过Notion和Nobelium,我们可以更专注于内容创作,享受书写和分享的乐趣。这条创作之路或许漫长,但坚持下去,就能守住自己的一片天地,也是一种浪漫的坚持。希望大家也能通过这个教程,搭建出属于自己的博客网站,记录和分享自己的点滴感悟。

热门推荐

Notion教程
回复:notion,获取Notion安装包。分享Notion教程,Notion中文社区,Notion AI教程,Notion会员,Notion模板,NotionAI注册,NotionAI申请,NotionAI写作,Notion插件。
 最新文章