Skip to content

Commit

Permalink
Customization
Browse files Browse the repository at this point in the history
  • Loading branch information
QubitPi committed Aug 13, 2024
1 parent b358bdd commit cd642c6
Show file tree
Hide file tree
Showing 70 changed files with 2,362 additions and 377 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# Copyright Jiaqi Liu
---
name: CI/CD

"on":
push:
branches:
- master

jobs:
deploy-to-github-pages:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
- run: |
npm install -g pnpm
pnpm install
pnpm add sharp
pnpm build
- name: Deploy blogs to GitHub Pages
if: github.ref == 'refs/heads/master'
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: dist
enable_jekyll: false
user_name: QubitPi
user_email: [email protected]
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,5 @@ pnpm-debug.log*
package-lock.json
bun.lockb
yarn.lock

.idea
16 changes: 15 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ A static blog template built with [Astro](https://astro.build).

> README version: `2024-04-07`
![Preview Image](https://raw.githubusercontent.com/saicaca/resource/main/fuwari/home.png)
![Preview Image](./blog-home-page.png)

## ✨ Features

Expand All @@ -22,6 +22,20 @@ A static blog template built with [Astro](https://astro.build).
- [ ] Comments
- [x] Search
- [ ] TOC
- [x] ([This fork]()) Per-post font customization:

- [x] [庞中华行楷 for Chinese](https://www.fonts101.com/fonts/view/Script/62094/US_Declaration) ([example post](https://leadership.qubitpi.org/posts/%E5%AD%99%E5%AD%90%E5%85%B5%E6%B3%95%E8%AE%A1%E7%AF%87%E7%AC%AC%E4%B8%80/))
- [x] [DX Red Mailbox Bold for Korean](https://www.fonts101.com/fonts/view/Script/62094/US_Declaration) ([example post](https://leadership.qubitpi.org/posts/%EB%82%98%EC%9D%98-%EC%95%84%EC%A0%80%EC%94%A8/))
- [x] [US Declaration](https://www.fonts101.com/fonts/view/Script/62094/US_Declaration) ([example post](https://leadership.qubitpi.org/posts/declaration-of-independence/))
- [x] [Blackletter for Latin Manuscript](https://www.fontsquirrel.com/fonts/chomsky) ([example post](https://leadership.qubitpi.org/posts/pro-lege-manilia/))
- [x] [GFS Porson for Ancient Greek](https://www.oocities.org/greekfonts/) ([example post](https://leadership.qubitpi.org/posts/reading-notes-de-administrando-imperio/))

> [!NOTE]
>
> I was actually going to pick up the [ZephGreek](https://www.loebclassics.com/page/logo) but realized that the
> [Loeb never publishes the font](https://tex.stackexchange.com/a/163342/277953)
- [x] Ubuntu (Default global font)

## 🚀 How to Use

Expand Down
2 changes: 1 addition & 1 deletion astro.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ const oklchToHex = (str) => {

// https://astro.build/config
export default defineConfig({
site: "https://fuwari.vercel.app/",
site: "https://leadership.qubitpi.org/",
base: "/",
trailingSlash: "always",
integrations: [
Expand Down
Binary file added blog-home-page.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions frontmatter.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,11 @@
"title": "draft",
"name": "draft",
"type": "boolean"
},
{
"title": "font",
"name": "font",
"type": "string"
}
]
}
Expand Down
1 change: 1 addition & 0 deletions public/CNAME
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
leadership.qubitpi.org
Binary file added public/fonts/Chomsky.otf
Binary file not shown.
Binary file added public/fonts/Chomsky.ttf
Binary file not shown.
Binary file added public/fonts/DXRedMailboxBold.ttf
Binary file not shown.
Binary file added public/fonts/PangZhonghuaXingKai.ttf
Binary file not shown.
Binary file added public/fonts/Porson.ttf
Binary file not shown.
Binary file added public/fonts/USDeclaration.ttf
Binary file not shown.
Binary file added src/assets/images/avatar.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/images/banner-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/images/banner-2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/images/banner-3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed src/assets/images/demo-avatar.png
Binary file not shown.
Binary file removed src/assets/images/demo-banner.png
Binary file not shown.
35 changes: 32 additions & 3 deletions src/components/PostCard.astro
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ interface Props {
image: string
description: string
draft: boolean
font: string
style: string
}
const {
Expand All @@ -29,6 +30,7 @@ const {
category,
image,
description,
font,
style,
} = Astro.props
const className = Astro.props.class
Expand All @@ -38,16 +40,25 @@ const hasCover = image !== undefined && image !== null && image !== ''
const coverWidth = '28%'
const { remarkPluginFrontmatter } = await entry.render()
const fontSwitch = {
'font-USDeclaration': entry.data.font == 'USDeclaration',
'font-Chomsky': entry.data.font == 'Chomsky',
'font-PangZhonghuaXingKai': entry.data.font == 'PangZhonghuaXingKai',
'font-DXRedMailboxBold': entry.data.font == 'DXRedMailboxBold',
'font-Porson': entry.data.font == 'Porson',
'font-Ubuntu': entry.data.font == 'Ubuntu' || entry.data.font == null
}
---
<div class:list={["card-base flex flex-col-reverse md:flex-col w-full rounded-[var(--radius-large)] overflow-hidden relative", className]} style={style}>
<div class:list={["pl-6 md:pl-9 pr-6 md:pr-2 pt-6 md:pt-7 pb-6 relative", {"w-full md:w-[calc(100%_-_52px_-_12px)]": !hasCover, "w-full md:w-[calc(100%_-_var(--coverWidth)_-_12px)]": hasCover}]}>
<a href={url}
class="transition group w-full block font-bold mb-3 text-3xl text-90
class=`transition group w-full block font-bold font-${font} mb-3 text-3xl text-90
hover:text-[var(--primary)] dark:hover:text-[var(--primary)]
active:text-[var(--title-active)] dark:active:text-[var(--title-active)]
before:w-1 before:h-5 before:rounded-md before:bg-[var(--primary)]
before:absolute before:top-[35px] before:left-[18px] before:hidden md:before:block
">
`>
{title}
<Icon class="inline text-[2rem] text-[var(--primary)] md:hidden translate-y-0.5 absolute" name="material-symbols:chevron-right-rounded" ></Icon>
<Icon class="text-[var(--primary)] text-[2rem] transition hidden md:inline absolute translate-y-0.5 opacity-0 group-hover:opacity-100 -translate-x-1 group-hover:translate-x-0" name="material-symbols:chevron-right-rounded"></Icon>
Expand All @@ -57,7 +68,7 @@ const { remarkPluginFrontmatter } = await entry.render()
<PostMetadata published={published} tags={tags} category={category} hideTagsForMobile={true} class="mb-4"></PostMetadata>

<!-- description -->
<div class:list={["transition text-75 mb-3.5 pr-4", {"line-clamp-2 md:line-clamp-1": !description}]}>
<div class:list={["transition text-75 mb-3.5 pr-4", {"line-clamp-2 md:line-clamp-1": !description}, fontSwitch]}>
{ description || remarkPluginFrontmatter.excerpt }
</div>

Expand Down Expand Up @@ -101,3 +112,21 @@ const { remarkPluginFrontmatter } = await entry.render()

<style lang="stylus" define:vars={{coverWidth}}>
</style>

<style is:global>
@font-face {
font-family: 'DXRedMailboxBold';
src: url('/fonts/DXRedMailboxBold.ttf') format('truetype');
font-weight: normal;
font-style: normal;
font-display: swap;
}

@font-face {
font-family: 'PangZhonghuaXingKai';
src: url('/fonts/PangZhonghuaXingKai.ttf') format('truetype');
font-weight: normal;
font-style: normal;
font-display: swap;
}
</style>
15 changes: 14 additions & 1 deletion src/components/PostPage.astro
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,19 @@ let delay = 0
const interval = 50
---
<div class="transition flex flex-col rounded-[var(--radius-large)] bg-[var(--card-bg)] py-1 md:py-0 md:bg-transparent md:gap-4 mb-4">
{page.data.map((entry: { data: { draft: boolean; title: string; tags: string[]; category: string; published: Date; image: string; description: string; }; slug: string; }) => {
{page.data.map((entry: {
data: {
draft: boolean;
title: string;
tags: string[];
category: string;
published: Date;
image: string;
description: string;
font: string
};
slug: string;
}) => {
return (
<PostCard
entry={entry}
Expand All @@ -20,6 +32,7 @@ const interval = 50
image={entry.data.image}
description={entry.data.description}
draft={entry.data.draft}
font={entry.data.font}
class:list="onload-animation"
style={`animation-delay: calc(var(--content-delay) + ${delay++ * interval}ms);`}
></PostCard>
Expand Down
36 changes: 18 additions & 18 deletions src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,16 @@ import type {
import { LinkPreset } from './types/config'

export const siteConfig: SiteConfig = {
title: 'Fuwari',
subtitle: 'Demo Site',
lang: 'en', // 'en', 'zh_CN', 'zh_TW', 'ja', 'ko'
title: 'Jack\'s Leadership Blog',
subtitle: 'Leadership is, at root, about Influencing Others',
lang: 'en', // 'en', 'zh_CN', 'zh_TW', 'ja'
themeColor: {
hue: 250, // Default hue for the theme color, from 0 to 360. e.g. red: 0, teal: 200, cyan: 250, pink: 345
fixed: false, // Hide the theme color picker for visitors
},
banner: {
enable: false,
src: 'assets/images/demo-banner.png', // Relative to the /src directory. Relative to the /public directory if it starts with '/'
enable: true,
src: 'assets/images/banner-1.png', // Relative to the /src directory. Relative to the /public directory if it starts with '/'
position: 'center', // Equivalent to object-position, defaults center
credit: {
enable: false, // Display the credit text of the banner image
Expand All @@ -40,33 +40,33 @@ export const navBarConfig: NavBarConfig = {
LinkPreset.About,
{
name: 'GitHub',
url: 'https://github.com/saicaca/fuwari', // Internal links should not include the base path, as it is automatically added
external: true, // Show an external link icon and will open in a new tab
url: 'https://github.com/Qubitpi', // Internal links should not include the base path, as it is automatically added
external: true, // Show an external link icon and will open in a new tab
},
],
}

export const profileConfig: ProfileConfig = {
avatar: 'assets/images/demo-avatar.png', // Relative to the /src directory. Relative to the /public directory if it starts with '/'
name: 'Lorem Ipsum',
bio: 'Lorem ipsum dolor sit amet, consectetur adipiscing elit.',
avatar: 'assets/images/avatar.png', // Relative to the /src directory. Relative to the /public directory if it starts with '/'
name: '【烬火】胡桃',
bio: 'Leadership is, at root, about Influencing Others.',
links: [
{
name: 'Twitter',
icon: 'fa6-brands:twitter', // Visit https://icones.js.org/ for icon codes
name: 'Paion Data',
icon: 'fa6-brands:bluesky', // Visit https://icones.js.org/ for icon codes
// You will need to install the corresponding icon set if it's not already included
// `pnpm add @iconify-json/<icon-set-name>`
url: 'https://twitter.com',
url: 'https://github.com/paion-data',
},
{
name: 'Steam',
icon: 'fa6-brands:steam',
url: 'https://store.steampowered.com',
name: 'Nexus Graph',
icon: 'fa6-brands:ubuntu',
url: 'https://nexusgraph.com',
},
{
name: 'GitHub',
icon: 'fa6-brands:github',
url: 'https://github.com/saicaca/fuwari',
icon: 'fa6-brands:github-alt',
url: 'https://github.com/Qubitpi',
},
],
}
Expand Down
1 change: 1 addition & 0 deletions src/content/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ const postsCollection = defineCollection({
image: z.string().optional().default(''),
tags: z.array(z.string()).optional().default([]),
category: z.string().optional().default(''),
font: z.string().optional(),

/* For internal use */
prevTitle: z.string().default(''),
Expand Down
Binary file added src/content/posts/Bande-der-Brüder/cover.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
27 changes: 27 additions & 0 deletions src/content/posts/Bande-der-Brüder/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
---
title: "Band of Brothers, Ep. 10, Deutscher General spricht zu seinen Männern"
published: 2024-08-13
description: "Band of Brothers, Ep. 10, Deutscher General spricht zu seinen Männern"
image: cover.png
tags: [Leadership, Public Speech]
category: German
draft: false
---

Ursprüngliche Rede
------------------

<iframe width="100%" height="468" src="https://www.youtube.com/embed/SSlp1_9gJ4M?si=f7zxkA5eBKhiXGU1" title="Band of Brothers, Ep. 10, deutscher General spricht zu seinen Männern" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>

:::tip[Transkript]
Männer, es war ein langer Krieg, es war ein harter Krieg. Ihr habt tapfer und stolz für Euer Vaterland gekämpft. Ihr
seid eine spezielle Gruppe, die ineinander einen Zusammenhalt gefunden habt, wie er nur im Kampf existiert.

…unter Brüdern, die Fuchshöhlen geteilt haben, die sich in schrechklichen Momenten gegenseitig gehalten, die den Tod
zusammen gesehen und miteinander gelitten haben. Ich bin stolz mit Euch gedient zu haben. Sie verdienen ein glückliches
und langes Leben.
:::

Einer nach dem anderen beginnen die fünf Amerikaner, diese Worte zu hören Sie werden auch mit ihnen gesprochen. Als
solche erleben sie einige der gleichen Gefühle wie die besiegten Truppen vor ihnen, die von der Rede ihres Kommandanten
sicherlich berührt sind.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
47 changes: 47 additions & 0 deletions src/content/posts/declaration-of-independence/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
---
title: Infinite Game - Declaration of Independence
published: 2024-08-04
description: A Just Cause means For Something, which should be affirmative and optimistic
image: cover.png
tags: [Leadership]
category: English
draft: false
font: USDeclaration
---

![Error loading declaration-of-independence.png](./declaration-of-independence.png)

:::tip[Source]
[_The Infinite Game_](https://trello.com/c/cj3d6g2A). New York: Portfolio/Penguin, 2019. ISBN 9780735213500, Chapter
2 - What a Just Cause Is - For something -- affirmative and optimistic
:::

A Just Cause is something we stand for and believe in, not something we oppose. Leaders can rally people _against_
something quite easily. They can whip them into a frenzy, even. For our emotions can run hot when we are angry or
afraid. Being _for_ something, in contrast, is about feeling inspired. Being _for_ ignites the human spirit and fills us
with hope and optimism. Being against is about vilifying, demonizing or rejecting. Being _for_ is about inviting all to
join in common cause. Being _against_ focuses our attention on the things we can see in order to elicit reactions. Being
for focuses our attention on the unbuilt future in order to spark our imaginations.

Imagine if instead of fighting _against_ poverty, for example, we fought _for_ the right of every human to provide for
their own family. The first creates a common enemy, something we are against. It sets up the Cause as if it is
"winnable," i.e., a finite game. It leads us to believe that we can defeat poverty once and for all. The second gives us
a cause to advance. The impact of the two perspectives is more than semantics. It affects how we view the problem/vision
that affects our ideas on how we can contribute. Where the first offers us a problem to solve, the second offers a
vision of possibility, dignity and empowerment. We are not inspired to "reduce" poverty, we are inspired to "grow" the
number of people who are able to provide for themselves and their families. Being for or being against is a subtle but
profound difference that the writers of the Declaration of Independence intuitively understood.

Those who led America toward independence stood _against_ Great Britain in the short term. Indeed the American colonists
were deeply offended by how they were treated by England. Over 60 percent of the Declaration of Independence is spent
laying out specific grievances against the king. However, the Cause they were fighting _for_ was the true source of
lasting inspiration, and in the Declaration of Independence it came before anything else. It is the first idea we read
in the document. It sets the context for the rest of the Declaration and the direction for moving forward. It is the
ideal to which we personally relate and that we have easily committed to memory. Few Americans, except for scholars and
the most zealous of history buffs, can rattle off even one of the complaints listed later in the document, things like:
"He has endeavored to prevent the Population of these States; for that purpose obstructing the Laws for naturalization
of foreigners; refusing to pass others to encourage their Migrations hither, and raising the Conditions of new
Appropriations of Lands." In contrast, most Americans can recite with ease "all men are created equal" and can usually
rattle off the three tenets of "Life, Liberty and the pursuit of Happiness." These words are indelibly marked on the
cultural psyche. Invoked by patriots and politicians alike, they remind Americans of who we strive to be and the ideals
upon which our nation was founded. They tell us what we stand _for_.
22 changes: 0 additions & 22 deletions src/content/posts/draft.md

This file was deleted.

Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit cd642c6

Please sign in to comment.