Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions .github/workflows/pkgdown.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,19 +31,20 @@ 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:
extra-packages: any::pkgdown, local::.
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
Expand Down
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -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"))
Expand Down
14 changes: 7 additions & 7 deletions inst/pkgdown/_pkgdown.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,21 +44,21 @@ 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
articles:
text: Articles
href: articles/index.html
functions:
text: Functions
Expand Down Expand Up @@ -88,7 +88,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:
Expand Down
Loading