Skip to content

Commit d847b5b

Browse files
author
Quarto GHA Workflow Runner
committed
Built site for gh-pages
1 parent 39ea542 commit d847b5b

5 files changed

Lines changed: 44 additions & 29 deletions

File tree

.nojekyll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
65574e60
1+
1829361f

pages/blog/index.html

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -401,6 +401,14 @@ <h1 class="title">Listings (e.g., blog)</h1>
401401
</header>
402402

403403

404+
<div class="pale-blue">
405+
<p><strong>On this page we will:</strong></p>
406+
<ul>
407+
<li>Create a simple listing of pages (e.g., for a blog).</li>
408+
<li>Create a grouped listing of pages.</li>
409+
<li>Build a more advanced listing to external pages using a YAML file and EJS template.</li>
410+
</ul>
411+
</div>
404412
<p>A <a href="https://quarto.org/docs/reference/projects/websites.html#listings">listing</a> is a Quarto feature that automatically builds a list or grid of items for you.</p>
405413
<p>There are two ways to use listings:</p>
406414
<ol type="1">
@@ -437,7 +445,7 @@ <h3 data-number="1.1" class="anchored" data-anchor-id="simple-listing-of-pages">
437445
<p>Example:</p>
438446
<div id="listing-simple" class="quarto-listing quarto-listing-container-grid">
439447
<div class="list grid quarto-listing-cols-3">
440-
<div class="g-col-1" data-index="0" data-listing-file-modified-sort="1779459207027" data-listing-reading-time-sort="1" data-listing-word-count-sort="8">
448+
<div class="g-col-1" data-index="0" data-listing-file-modified-sort="1779459512266" data-listing-reading-time-sort="1" data-listing-word-count-sort="8">
441449
<a href="../../pages/blog/examples/example1/index.html" class="quarto-grid-link">
442450
<div class="quarto-grid-item card h-100 card-left">
443451
<p class="card-img-top"><img loading='lazy' src="examples/example1/butterfly.jpg" alt="Butterfly" style="height: 150px;" class="thumbnail-image card-img"/></p>
@@ -456,7 +464,7 @@ <h5 class="no-anchor card-title listing-title">
456464
</div>
457465
</div></a>
458466
</div>
459-
<div class="g-col-1" data-index="1" data-listing-file-modified-sort="1779459207027" data-listing-reading-time-sort="1" data-listing-word-count-sort="8">
467+
<div class="g-col-1" data-index="1" data-listing-file-modified-sort="1779459512266" data-listing-reading-time-sort="1" data-listing-word-count-sort="8">
460468
<a href="../../pages/blog/examples/example2/index.html" class="quarto-grid-link">
461469
<div class="quarto-grid-item card h-100 card-left">
462470
<p class="card-img-top"><img loading='lazy' src="examples/example2/squirrel.jpg" alt="Squirrel" style="height: 150px;" class="thumbnail-image card-img"/></p>
@@ -475,7 +483,7 @@ <h5 class="no-anchor card-title listing-title">
475483
</div>
476484
</div></a>
477485
</div>
478-
<div class="g-col-1" data-index="2" data-listing-file-modified-sort="1779459207029" data-listing-reading-time-sort="1" data-listing-word-count-sort="8">
486+
<div class="g-col-1" data-index="2" data-listing-file-modified-sort="1779459512269" data-listing-reading-time-sort="1" data-listing-word-count-sort="8">
479487
<a href="../../pages/blog/examples/example3/index.html" class="quarto-grid-link">
480488
<div class="quarto-grid-item card h-100 card-left">
481489
<p class="card-img-top"><img loading='lazy' src="examples/example3/cat.jpg" alt="Cat" style="height: 150px;" class="thumbnail-image card-img"/></p>

pages/code/index.html

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -313,6 +313,13 @@ <h1 class="title">Code</h1>
313313
</header>
314314

315315

316+
<div class="pale-blue">
317+
<p><strong>On this page we will:</strong></p>
318+
<ul>
319+
<li>See how to add code cells to a Quarto document.</li>
320+
<li>Learn how to deploy sites via GitHub actions when they contain executable code.</li>
321+
</ul>
322+
</div>
316323
<section id="code-in-quarto-pages" class="level2" data-number="1">
317324
<h2 data-number="1" class="anchored" data-anchor-id="code-in-quarto-pages"><span class="header-section-number">1</span> Code in Quarto pages</h2>
318325
<p>In a Quarto document, you can include <strong>code cells</strong> and choose whether they run when you render the site.</p>

search.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"href": "pages/code/index.html",
1616
"title": "Code",
1717
"section": "",
18-
"text": "In a Quarto document, you can include code cells and choose whether they run when you render the site.\n\n\nA code cell is a fenced block like:\n```{python}\nprint(\"Hello from Python\")\n```\nIf the cell has a language (for example {python}, {r}, {bash}), Quarto can execute it when you render.\nThat means Quarto actually runs the code, captures the output (and any figures), and inserts those results into the page. This is powerful, because your website and your analysis stay in sync - if the code or data change, you just re‑render.\nBelow are some examples from the Quarto documentation showing a map and an interactive Plotly plot:\n\n\n\n\n\nIf you just want to show code (not run it), you can either:\n\nAdd a dot before the language.\n\n{.python} print(\"Hello from Python\")\n\nMake the cell as eval: false.\n\n```{python}\n#| eval: false\nprint(\"Hello from Python\")\n```\n\nSet all cells in a Quarto document to eval: false in the YAML:\n\n---\ntitle: \"Title\"\nexecute:\n eval: false\n---",
18+
"text": "On this page we will:\n\nSee how to add code cells to a Quarto document.\nLearn how to deploy sites via GitHub actions when they contain executable code.",
1919
"crumbs": [
2020
"GitHub",
2121
"Optional extras",
@@ -26,8 +26,8 @@
2626
"objectID": "pages/code/index.html#code-in-quarto-pages",
2727
"href": "pages/code/index.html#code-in-quarto-pages",
2828
"title": "Code",
29-
"section": "",
30-
"text": "In a Quarto document, you can include code cells and choose whether they run when you render the site.\n\n\nA code cell is a fenced block like:\n```{python}\nprint(\"Hello from Python\")\n```\nIf the cell has a language (for example {python}, {r}, {bash}), Quarto can execute it when you render.\nThat means Quarto actually runs the code, captures the output (and any figures), and inserts those results into the page. This is powerful, because your website and your analysis stay in sync - if the code or data change, you just re‑render.\nBelow are some examples from the Quarto documentation showing a map and an interactive Plotly plot:\n\n\n\n\n\nIf you just want to show code (not run it), you can either:\n\nAdd a dot before the language.\n\n{.python} print(\"Hello from Python\")\n\nMake the cell as eval: false.\n\n```{python}\n#| eval: false\nprint(\"Hello from Python\")\n```\n\nSet all cells in a Quarto document to eval: false in the YAML:\n\n---\ntitle: \"Title\"\nexecute:\n eval: false\n---",
29+
"section": "1 Code in Quarto pages",
30+
"text": "1 Code in Quarto pages\nIn a Quarto document, you can include code cells and choose whether they run when you render the site.\n\n1.1 Executable code\nA code cell is a fenced block like:\n```{python}\nprint(\"Hello from Python\")\n```\nIf the cell has a language (for example {python}, {r}, {bash}), Quarto can execute it when you render.\nThat means Quarto actually runs the code, captures the output (and any figures), and inserts those results into the page. This is powerful, because your website and your analysis stay in sync - if the code or data change, you just re‑render.\nBelow are some examples from the Quarto documentation showing a map and an interactive Plotly plot:\n\n\n\n\n1.2 Non-executable code\nIf you just want to show code (not run it), you can either:\n\nAdd a dot before the language.\n\n{.python} print(\"Hello from Python\")\n\nMake the cell as eval: false.\n\n```{python}\n#| eval: false\nprint(\"Hello from Python\")\n```\n\nSet all cells in a Quarto document to eval: false in the YAML:\n\n---\ntitle: \"Title\"\nexecute:\n eval: false\n---",
3131
"crumbs": [
3232
"GitHub",
3333
"Optional extras",
@@ -106,7 +106,7 @@
106106
"href": "pages/blog/index.html",
107107
"title": "Listings (e.g., blog)",
108108
"section": "",
109-
"text": "A listing is a Quarto feature that automatically builds a list or grid of items for you.\nThere are two ways to use listings:",
109+
"text": "On this page we will:\n\nCreate a simple listing of pages (e.g., for a blog).\nCreate a grouped listing of pages.\nBuild a more advanced listing to external pages using a YAML file and EJS template.\nA listing is a Quarto feature that automatically builds a list or grid of items for you.\nThere are two ways to use listings:",
110110
"crumbs": [
111111
"GitHub",
112112
"Optional extras",

sitemap.xml

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -2,86 +2,86 @@
22
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
33
<url>
44
<loc>https://pythonhealthdatascience.github.io/quarto-tutorial/pages/examples/index.html</loc>
5-
<lastmod>2026-05-22T14:13:27.100Z</lastmod>
5+
<lastmod>2026-05-22T14:18:32.350Z</lastmod>
66
</url>
77
<url>
88
<loc>https://pythonhealthdatascience.github.io/quarto-tutorial/pages/code/index.html</loc>
9-
<lastmod>2026-05-22T14:13:27.029Z</lastmod>
9+
<lastmod>2026-05-22T14:18:32.269Z</lastmod>
1010
</url>
1111
<url>
1212
<loc>https://pythonhealthdatascience.github.io/quarto-tutorial/pages/basic_structure/index.html</loc>
13-
<lastmod>2026-05-22T14:13:27.018Z</lastmod>
13+
<lastmod>2026-05-22T14:18:32.257Z</lastmod>
1414
</url>
1515
<url>
1616
<loc>https://pythonhealthdatascience.github.io/quarto-tutorial/pages/blog/examples/example1/index.html</loc>
17-
<lastmod>2026-05-22T14:13:27.027Z</lastmod>
17+
<lastmod>2026-05-22T14:18:32.266Z</lastmod>
1818
</url>
1919
<url>
2020
<loc>https://pythonhealthdatascience.github.io/quarto-tutorial/pages/blog/index.html</loc>
21-
<lastmod>2026-05-22T14:13:27.029Z</lastmod>
21+
<lastmod>2026-05-22T14:18:32.269Z</lastmod>
2222
</url>
2323
<url>
2424
<loc>https://pythonhealthdatascience.github.io/quarto-tutorial/pages/setup/index.html</loc>
25-
<lastmod>2026-05-22T14:13:27.165Z</lastmod>
25+
<lastmod>2026-05-22T14:18:32.422Z</lastmod>
2626
</url>
2727
<url>
2828
<loc>https://pythonhealthdatascience.github.io/quarto-tutorial/pages/markdown/index.html</loc>
29-
<lastmod>2026-05-22T14:13:27.159Z</lastmod>
29+
<lastmod>2026-05-22T14:18:32.416Z</lastmod>
3030
</url>
3131
<url>
3232
<loc>https://pythonhealthdatascience.github.io/quarto-tutorial/pages/task/index.html</loc>
33-
<lastmod>2026-05-22T14:13:27.175Z</lastmod>
33+
<lastmod>2026-05-22T14:18:32.433Z</lastmod>
3434
</url>
3535
<url>
3636
<loc>https://pythonhealthdatascience.github.io/quarto-tutorial/pages/hosting/index.html</loc>
37-
<lastmod>2026-05-22T14:13:27.154Z</lastmod>
37+
<lastmod>2026-05-22T14:18:32.410Z</lastmod>
3838
</url>
3939
<url>
4040
<loc>https://pythonhealthdatascience.github.io/quarto-tutorial/pages/customising/index.html</loc>
41-
<lastmod>2026-05-22T14:13:27.032Z</lastmod>
41+
<lastmod>2026-05-22T14:18:32.272Z</lastmod>
4242
</url>
4343
<url>
4444
<loc>https://pythonhealthdatascience.github.io/quarto-tutorial/index.html</loc>
45-
<lastmod>2026-05-22T14:13:27.017Z</lastmod>
45+
<lastmod>2026-05-22T14:18:32.257Z</lastmod>
4646
</url>
4747
<url>
4848
<loc>https://pythonhealthdatascience.github.io/quarto-tutorial/CONTRIBUTING.html</loc>
49-
<lastmod>2026-05-22T14:13:27.010Z</lastmod>
49+
<lastmod>2026-05-22T14:18:32.249Z</lastmod>
5050
</url>
5151
<url>
5252
<loc>https://pythonhealthdatascience.github.io/quarto-tutorial/pages/inline_html/index.html</loc>
53-
<lastmod>2026-05-22T14:13:27.157Z</lastmod>
53+
<lastmod>2026-05-22T14:18:32.413Z</lastmod>
5454
</url>
5555
<url>
5656
<loc>https://pythonhealthdatascience.github.io/quarto-tutorial/pages/media/index.html</loc>
57-
<lastmod>2026-05-22T14:13:27.160Z</lastmod>
57+
<lastmod>2026-05-22T14:18:32.417Z</lastmod>
5858
</url>
5959
<url>
6060
<loc>https://pythonhealthdatascience.github.io/quarto-tutorial/pages/agenda/index.html</loc>
61-
<lastmod>2026-05-22T14:13:27.018Z</lastmod>
61+
<lastmod>2026-05-22T14:18:32.257Z</lastmod>
6262
</url>
6363
<url>
6464
<loc>https://pythonhealthdatascience.github.io/quarto-tutorial/pages/sass_css/index.html</loc>
65-
<lastmod>2026-05-22T14:13:27.161Z</lastmod>
65+
<lastmod>2026-05-22T14:18:32.417Z</lastmod>
6666
</url>
6767
<url>
6868
<loc>https://pythonhealthdatascience.github.io/quarto-tutorial/pages/making_a_change/index.html</loc>
69-
<lastmod>2026-05-22T14:13:27.158Z</lastmod>
69+
<lastmod>2026-05-22T14:18:32.414Z</lastmod>
7070
</url>
7171
<url>
7272
<loc>https://pythonhealthdatascience.github.io/quarto-tutorial/pages/blog/examples/example3/index.html</loc>
73-
<lastmod>2026-05-22T14:13:27.029Z</lastmod>
73+
<lastmod>2026-05-22T14:18:32.269Z</lastmod>
7474
</url>
7575
<url>
7676
<loc>https://pythonhealthdatascience.github.io/quarto-tutorial/pages/blog/examples/example2/index.html</loc>
77-
<lastmod>2026-05-22T14:13:27.027Z</lastmod>
77+
<lastmod>2026-05-22T14:18:32.266Z</lastmod>
7878
</url>
7979
<url>
8080
<loc>https://pythonhealthdatascience.github.io/quarto-tutorial/pages/why/index.html</loc>
81-
<lastmod>2026-05-22T14:13:27.175Z</lastmod>
81+
<lastmod>2026-05-22T14:18:32.433Z</lastmod>
8282
</url>
8383
<url>
8484
<loc>https://pythonhealthdatascience.github.io/quarto-tutorial/pages/quarto_features/index.html</loc>
85-
<lastmod>2026-05-22T14:13:27.160Z</lastmod>
85+
<lastmod>2026-05-22T14:18:32.417Z</lastmod>
8686
</url>
8787
</urlset>

0 commit comments

Comments
 (0)