Skip to content

Commit 03697c3

Browse files
authored
Merge pull request #50 from fingolfin/mh/up
2 parents 5819007 + a9d15c2 commit 03697c3

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
# PkgPage.jl
22

3-
[![Build Status](https://travis-ci.com/tlienart/PkgPage.jl.svg?branch=master)](https://travis-ci.com/tlienart/PkgPage.jl)
4-
[![Coverage](https://codecov.io/gh/tlienart/PkgPage.jl/branch/master/graph/badge.svg)](https://codecov.io/gh/tlienart/PkgPage.jl)
3+
[![CI](https://github.com/JuliaDocs/PkgPage.jl/actions/workflows/ci.yml/badge.svg)](https://github.com/JuliaDocs/PkgPage.jl/actions/workflows/ci.yml)
4+
[![Coverage](https://codecov.io/gh/JuliaDocs/PkgPage.jl/branch/master/graph/badge.svg)](https://codecov.io/gh/JuliaDocs/PkgPage.jl)
55

66
> Create a beautiful landing page for your package in less than 10 minutes
77
8-
* [**Instructions + Example**](https://tlienart.github.io/PkgPage.jl) (this will also be your starting point)
8+
* [**Instructions + Example**](https://juliadocs.org/PkgPage.jl) (this will also be your starting point)
99
* **Authors**: Thibaut Lienart, Zlatan Vasović
1010
* **Contributors**: Ole Kröger
1111

1212
If that's your thing, here's a [screencast](https://www.youtube.com/watch?v=6kARuINUAMs) showing how to use PkgPage to create a landing page (ironically it's 20 minutes long but you can definitely skip a few parts)
1313

1414
## Examples
1515

16-
- [PkgPage.jl](https://tlienart.github.io/PkgPage.jl)
16+
- [PkgPage.jl](https://juliadocs.org/PkgPage.jl)
1717
- [Lorenz Attraction App](https://tshort.github.io/Lorenz-WebAssembly-Model.jl/)
1818
- [LazilyInitializedFields.jl](https://kristofferc.github.io/LazilyInitializedFields.jl/)
1919

page/_layout/page_foot.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<footer class="py-5 bg-dark">
22
<div class="container">
3-
<p class="m-0 text-center text-white">&copy; {{authors}}. Website powered by <a href="https://github.com/tlienart/Franklin.jl">Franklin.jl</a>, <a href="https://github.com/tlienart/PkgPage.jl">PkgPage.jl</a> and the <a href="https://julialang.org">Julia</a> programming language.</p>
3+
<p class="m-0 text-center text-white">&copy; {{authors}}. Website powered by <a href="https://github.com/JuliaDocs/Franklin.jl">Franklin.jl</a>, <a href="https://github.com/JuliaDocs/PkgPage.jl">PkgPage.jl</a> and the <a href="https://julialang.org">Julia</a> programming language.</p>
44
</div>
55
</footer>

page/config.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ The latter allows you to plug in values that you would have defined here.
8787

8888
@def add_github_view = true
8989
@def add_github_star = true
90-
@def github_repo = "tlienart/PkgPage.jl"
90+
@def github_repo = "JuliaDocs/PkgPage.jl"
9191

9292
<!-- SECTION LAYOUT
9393
NOTE:

page/index.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
\begin{section}{title="About this Package", name="About"}
66

7-
\lead{PkgPage.jl is based upon [Franklin.jl](https://github.com/tlienart/Franklin.jl) and makes it easy to create a beautiful landing page for a package in less than 10 minutes.}
7+
\lead{PkgPage.jl is based upon [Franklin.jl](https://github.com/JuliaDocs/Franklin.jl) and makes it easy to create a beautiful landing page for a package in less than 10 minutes.}
88

99
PkgPage uses [Bootstrap 4.5](https://getbootstrap.com/docs/4.5/getting-started/introduction/) and is meant to be particularly easy to use with minimal need to tweak HTML or CSS to get a great-looking result.
1010
With it you can:
@@ -14,7 +14,7 @@ With it you can:
1414
* easily control the layout, colors, code theme etc from the config file,
1515
* automatic insertion of new sections into the navbar,
1616
* automatic purging of bootstrap css to remove unused rules,
17-
* all the goodies from [Franklin.jl](https://github.com/tlienart/Franklin.jl):
17+
* all the goodies from [Franklin.jl](https://github.com/JuliaDocs/Franklin.jl):
1818
* live-rendering,
1919
* support for [KaTeX](https://github.com/KaTeX/KaTeX) and [highlight.js](https://highlightjs.org/) and automatic pre-rendering,
2020
* and [much more](https://franklinjl.org/).
@@ -265,15 +265,15 @@ If you would like to deploy the page with your own URL or using something else t
265265
page/__site
266266
```
267267

268-
as shown [here](https://github.com/tlienart/PkgPage.jl/blob/cce098535eb95c2c3ba919d605792abfee57710c/.gitignore#L3).
268+
as shown [here](https://github.com/JuliaDocs/PkgPage.jl/blob/cce098535eb95c2c3ba919d605792abfee57710c/.gitignore#L3).
269269

270270
**GitAttributes**: in order for GitHub to ignore `page` folder it the language statistics for your repository, make sure to add a file `.gitattributes` with content
271271

272272
```
273273
page/* linguist-vendored
274274
```
275275

276-
like [this](https://github.com/tlienart/PkgPage.jl/blob/master/.gitattributes).
276+
like [this](https://github.com/JuliaDocs/PkgPage.jl/blob/master/.gitattributes).
277277

278278
Now whenever you push changes to the `master` branch of your package, the build process will be triggered and your page updated and deployed.
279279
**That's it**.

0 commit comments

Comments
 (0)