Compare commits

...

3 Commits

Author SHA1 Message Date
Jacky Zhao
66dd6bcf2d deprecate quartz v3 2023-08-19 18:49:50 -07:00
Gimbles
bb3877998a Add font fallbacks (#341) 2023-07-07 12:20:18 -07:00
Morgan Patterson
9450278680 Update Dockerfile (#335)
Fix #305
2023-07-07 12:20:03 -07:00
5 changed files with 12 additions and 7 deletions

View File

@@ -36,4 +36,4 @@ jobs:
github_token: ${{ secrets.GITHUB_TOKEN }} github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./public publish_dir: ./public
publish_branch: master # deploying branch publish_branch: master # deploying branch
cname: quartz.jzhao.xyz cname: three.quartz.jzhao.xyz

View File

@@ -1,6 +1,7 @@
FROM alpine:3.16 FROM alpine:3.16
RUN apk add --no-cache go hugo git make perl RUN apk add --no-cache go hugo git make perl
RUN git config --global --add safe.directory '/quartz'
RUN go install github.com/jackyzha0/hugo-obsidian@latest RUN go install github.com/jackyzha0/hugo-obsidian@latest
ENV PATH="/root/go/bin:$PATH" ENV PATH="/root/go/bin:$PATH"
RUN git clone https://github.com/jackyzha0/quartz.git /quartz RUN git clone https://github.com/jackyzha0/quartz.git /quartz

View File

@@ -1,4 +1,8 @@
# Quartz # Quartz 3
> [!warning]
> Quartz v3 is now deprecated and will no longer be maintained.
> See how to migrate to [Quartz 4](https://quartz.jzhao.xyz)
Host your second brain and [digital garden](https://jzhao.xyz/posts/networked-thought) for free. Quartz features Host your second brain and [digital garden](https://jzhao.xyz/posts/networked-thought) for free. Quartz features
@@ -12,7 +16,7 @@ Check out some of the [amazing gardens that community members](https://quartz.jz
> “[One] who works with the door open gets all kinds of interruptions, but [they] also occasionally gets clues as to what the world is and what might be important.” — Richard Hamming > “[One] who works with the door open gets all kinds of interruptions, but [they] also occasionally gets clues as to what the world is and what might be important.” — Richard Hamming
🔗 Get Started: https://quartz.jzhao.xyz/ 🔗 Get Started: https://three.quartz.jzhao.xyz/
![Quartz Example Screenshot](./screenshot.png)*Quartz Example Screenshot* ![Quartz Example Screenshot](./screenshot.png)*Quartz Example Screenshot*

View File

@@ -1,9 +1,9 @@
// Replace this with your own font imports! // Replace this with your own font imports!
@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@400;700&family=Inter:wght@400;600;700&family=Source+Sans+Pro:wght@400;600&display=swap'); @import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@400;700&family=Inter:wght@400;600;700&family=Source+Sans+Pro:wght@400;600&display=swap');
:root { :root {
--font-body: "Source Sans Pro"; --font-body: "Source Sans Pro", sans-serif;
--font-header: "Inter"; --font-header: "Inter", sans-serif;
--font-mono: "Fira Code" --font-mono: "Fira Code", monospace;
} }
// typography // typography

View File

@@ -1,4 +1,4 @@
baseURL = "https://quartz.jzhao.xyz/" baseURL = "https://three.quartz.jzhao.xyz/"
languageCode = "en-us" languageCode = "en-us"
relativeURLs = false relativeURLs = false
disablePathToLower = true disablePathToLower = true