Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/capnfabs/paperesque.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitignore1
-rw-r--r--README.md4
-rw-r--r--theme.toml2
3 files changed, 4 insertions, 3 deletions
diff --git a/.gitignore b/.gitignore
index 9c3922d..3a6ffe2 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,3 +1,4 @@
.cache/
node_modules
*.js.map
+.DS_Store
diff --git a/README.md b/README.md
index d3b8f57..d543973 100644
--- a/README.md
+++ b/README.md
@@ -18,7 +18,7 @@ Here's what makes it special:
Copy the files into your repo using `git subtree` (this is way easier to use than submodules; [here's an explainer](https://www.atlassian.com/git/tutorials/git-subtree)):
```sh
-git subtree add --prefix themes/paperesque https://github.com/capnfabs/paperesque master --squash
+git subtree add --prefix themes/paperesque https://github.com/capnfabs/paperesque mainline --squash
```
This will add a commit to your repo with everything ready to go. You'll probably want to modify parts of this theme for your own usage! Subtree makes that easy, because you've just copied the code into your repo ✨
@@ -28,7 +28,7 @@ This will add a commit to your repo with everything ready to go. You'll probably
If you're sure you want to use git submodules:
```sh
-git submodule add --init https://github.com/capnfabs/paperesque themes/paperesque
+git submodule add -b mainline https://github.com/capnfabs/paperesque themes/paperesque
```
### Select the theme in your `config.toml`
diff --git a/theme.toml b/theme.toml
index fc1473a..6e63c65 100644
--- a/theme.toml
+++ b/theme.toml
@@ -1,6 +1,6 @@
name = "Paperesque"
license = "MIT"
-licenselink = "https://github.com/capnfabs/paperesque/blob/master/LICENSE.md"
+licenselink = "https://github.com/capnfabs/paperesque/blob/mainline/LICENSE.md"
description = "A lightweight theme for personal websites."
homepage = "https://github.com/capnfabs/paperesque/"
tags = ["blog", "personal", "light", "responsive", "minimal"]