From 0dd179a7054f54b451bfbb92172750cea589dd83 Mon Sep 17 00:00:00 2001 From: VisruthSK Date: Fri, 11 Sep 2026 14:33:43 -0700 Subject: [PATCH 1/3] Renamed Vignettes --- inst/pkgdown/_pkgdown.yml | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/inst/pkgdown/_pkgdown.yml b/inst/pkgdown/_pkgdown.yml index 7df7593..a590ff3 100644 --- a/inst/pkgdown/_pkgdown.yml +++ b/inst/pkgdown/_pkgdown.yml @@ -44,22 +44,19 @@ template: navbar-dark-brand-color: "#FAF1E4" navbar-dark-brand-hover-color: "#FAF1E4" - base_font: { google: "Source Sans 3" } - heading_font: { google: "Source Sans 3" } - code_font: { google: "Source Code Pro" } + base_font: {google: Source Sans 3} + heading_font: {google: Source Sans 3} + code_font: {google: Source Code Pro} navbar: structure: - left: [home, vignettes, functions, news, otherpkgs, stan] + left: [home, articles, functions, news, otherpkgs, stan] right: [search, bluesky, forum, github, lightswitch] components: home: icon: fa-home fa-lg aria-label: Go to homepage href: index.html - vignettes: - text: Vignettes - href: articles/index.html functions: text: Functions href: reference/index.html @@ -88,7 +85,7 @@ navbar: text: About Stan href: https://mc-stan.org/about/ bluesky: - icon: "fa-brands fa-bluesky" + icon: fa-brands fa-bluesky aria-label: Visit our Bluesky profile href: https://bsky.app/profile/did:plc:qznndgdnkem2yryu7ipqbpv7 forum: From 7cb0799fb8fa2993dae1a4318111fc8bb7a36ac4 Mon Sep 17 00:00:00 2001 From: VisruthSK Date: Fri, 11 Sep 2026 14:34:25 -0700 Subject: [PATCH 2/3] Build and deploy site on PRs, bumped to dev version --- .github/workflows/pkgdown.yaml | 7 ++++--- DESCRIPTION | 2 +- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/pkgdown.yaml b/.github/workflows/pkgdown.yaml index 66f1177..d0a1e3a 100644 --- a/.github/workflows/pkgdown.yaml +++ b/.github/workflows/pkgdown.yaml @@ -31,7 +31,7 @@ jobs: - uses: r-lib/actions/setup-r@v2 with: use-public-rspm: true - extra-repositories: 'https://stan-dev.r-universe.dev' + extra-repositories: https://stan-dev.r-universe.dev - uses: r-lib/actions/setup-r-dependencies@v2 with: @@ -39,11 +39,12 @@ jobs: needs: website - name: Build site - run: pkgdown::build_site_github_pages(clean = FALSE, new_process = TRUE, install = FALSE) + run: >- + pkgdown::build_site_github_pages(clean = FALSE, new_process = TRUE, + install = FALSE) shell: Rscript {0} - name: Deploy to GitHub pages 🚀 - if: github.event_name != 'pull_request' uses: JamesIves/github-pages-deploy-action@v4.5.0 with: branch: gh-pages diff --git a/DESCRIPTION b/DESCRIPTION index 00504b8..ee6e32c 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,6 +1,6 @@ Package: pkgdownconfig Title: Stan pkgdown Website Styling -Version: 2.5.0 +Version: 2.5.0.9000 Authors@R: person("Visruth", "Srimath Kandali", , "public@visruth.com", role = c("aut", "cre"), comment = c(ORCID = "0009-0005-9097-0688")) From 929ee9d287c2d43f4d0cdefbf825f7414835c5e9 Mon Sep 17 00:00:00 2001 From: VisruthSK Date: Fri, 11 Sep 2026 14:35:50 -0700 Subject: [PATCH 3/3] Added Articles index file back --- inst/pkgdown/_pkgdown.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/inst/pkgdown/_pkgdown.yml b/inst/pkgdown/_pkgdown.yml index a590ff3..faf3589 100644 --- a/inst/pkgdown/_pkgdown.yml +++ b/inst/pkgdown/_pkgdown.yml @@ -57,6 +57,9 @@ navbar: icon: fa-home fa-lg aria-label: Go to homepage href: index.html + articles: + text: Articles + href: articles/index.html functions: text: Functions href: reference/index.html