Skip to content

Commit cb0779a

Browse files
committed
2 parents df6b188 + b905fbc commit cb0779a

File tree

810 files changed

+9115
-56600
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

810 files changed

+9115
-56600
lines changed

.editorconfig

Lines changed: 0 additions & 13 deletions
This file was deleted.

.github/workflows/build.yml

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
name: Render and Publish
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
workflow_dispatch:
8+
9+
concurrency:
10+
group: production
11+
cancel-in-progress: true
12+
13+
jobs:
14+
build-deploy:
15+
permissions:
16+
contents: read
17+
pages: write
18+
id-token: write
19+
environment: production
20+
runs-on: ubuntu-latest
21+
22+
steps:
23+
- name: Check out repository
24+
uses: actions/checkout@v4
25+
with:
26+
submodules: recursive
27+
28+
- name: Set up Quarto
29+
uses: quarto-dev/quarto-actions/setup@v2
30+
with:
31+
# note: when updating, make sure merge_docs_search.py still works
32+
version: 1.6.39
33+
34+
- name: Render with Quarto
35+
run: |
36+
quarto render --to html
37+
38+
- name: Setup Pages
39+
uses: actions/configure-pages@v4
40+
- name: Upload artifact
41+
uses: actions/upload-pages-artifact@v3
42+
with:
43+
path: "./_website"
44+
- name: Deploy to GitHub Pages
45+
id: deployment
46+
uses: actions/deploy-pages@v4

.gitignore

Lines changed: 2 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,3 @@
1-
_site
2-
.DS_Store
3-
*.sublime-project
4-
*.sublime-workspace
5-
codekit-config.json
6-
node_modules
7-
.sass-cache
8-
*~
1+
/.quarto/
2+
_website/
93
.Rproj.user
10-
.Rhistory
11-
Gemfile.lock
12-
Gemfile

.gitmodules

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[submodule "quarto-config"]
2+
path = quarto-config
3+
url = https://github.com/stan-dev/quarto-config

.jshintrc

Lines changed: 0 additions & 20 deletions
This file was deleted.
File renamed without changes.

.travis.yml

Lines changed: 0 additions & 15 deletions
This file was deleted.

404.md

Lines changed: 0 additions & 12 deletions
This file was deleted.

404.qmd

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
---
2+
title: Page Not Found
3+
---
4+
5+
<img style="float:right; margin: 0em 1em 0em 1em" src="img/ulam-fermiac.png" width="200" alt="Ulam" />
6+
7+
8+
The page you requested cannot be found (perhaps it was moved or renamed).
9+
10+
You may want to try searching to find the page's new location.
11+
12+
<hr>
13+
14+
```stan
15+
16+
reject("This page cannot be found");
17+
18+
```
19+
20+
<hr>
21+

CNAME

Lines changed: 0 additions & 1 deletion
This file was deleted.

Gemfile

Lines changed: 0 additions & 7 deletions
This file was deleted.

0 commit comments

Comments
 (0)