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
627 changes: 627 additions & 0 deletions docs/404.html

Large diffs are not rendered by default.

3 changes: 1 addition & 2 deletions docs/about.html
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
<link href="site_libs/quarto-html/quarto-syntax-highlighting-e1a5c8363afafaef2c763b6775fbf3ca.css" rel="stylesheet" id="quarto-text-highlighting-styles">
<script src="site_libs/bootstrap/bootstrap.min.js"></script>
<link href="site_libs/bootstrap/bootstrap-icons.css" rel="stylesheet">
<link href="site_libs/bootstrap/bootstrap-fdf1bca80bd9d483901bef3fce78339d.min.css" rel="stylesheet" append-hash="true" id="quarto-bootstrap" data-mode="light">
<link href="site_libs/bootstrap/bootstrap-dd9c779e94494289bcc721e80c3d99cc.min.css" rel="stylesheet" append-hash="true" id="quarto-bootstrap" data-mode="light">
<script src="site_libs/quarto-contrib/iconify-2.1.0/iconify-icon.min.js"></script>
<script id="quarto-search-options" type="application/json">{
"location": "navbar",
Expand Down Expand Up @@ -69,7 +69,6 @@
}</script>


<link rel="stylesheet" href="assets/css/website-styles.css">
<link rel="stylesheet" href="assets/css/documents.css">
<meta property="og:title" content="A GitHub repository featuring a starter template for R package development, paired with a Quarto-powered website">
<meta property="og:description" content="">
Expand Down
3 changes: 1 addition & 2 deletions docs/api_reference.html
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
<link href="site_libs/quarto-html/quarto-syntax-highlighting-e1a5c8363afafaef2c763b6775fbf3ca.css" rel="stylesheet" id="quarto-text-highlighting-styles">
<script src="site_libs/bootstrap/bootstrap.min.js"></script>
<link href="site_libs/bootstrap/bootstrap-icons.css" rel="stylesheet">
<link href="site_libs/bootstrap/bootstrap-fdf1bca80bd9d483901bef3fce78339d.min.css" rel="stylesheet" append-hash="true" id="quarto-bootstrap" data-mode="light">
<link href="site_libs/bootstrap/bootstrap-dd9c779e94494289bcc721e80c3d99cc.min.css" rel="stylesheet" append-hash="true" id="quarto-bootstrap" data-mode="light">
<script src="site_libs/quarto-contrib/iconify-2.1.0/iconify-icon.min.js"></script>
<script id="quarto-search-options" type="application/json">{
"location": "navbar",
Expand Down Expand Up @@ -104,7 +104,6 @@
}</script>


<link rel="stylesheet" href="assets/css/website-styles.css">
<link rel="stylesheet" href="assets/css/documents.css">
<meta property="og:title" content="A GitHub repository featuring a starter template for R package development, paired with a Quarto-powered website">
<meta property="og:image" content="https://centerforassessment.github.io/packageSkeleton/assets/img/packageSkeleton.png">
Expand Down
62 changes: 62 additions & 0 deletions docs/assets/js/scroll.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,71 @@ $(window).scroll(function(){
$('.navbar').addClass("shrink");
$('.navbar-title').addClass("shrink");
$('.navbar-logo').addClass("shrink");
$('body').addClass("shrink");
} else {
$('.navbar').removeClass("shrink");
$('.navbar-title').removeClass("shrink");
$('.navbar-logo').removeClass("shrink");
$('body').removeClass("shrink");
}
});

// Dropdown caret rotation functionality
$(document).ready(function() {
// Use MutationObserver to watch for changes in dropdown state
function observeDropdownChanges() {
var observer = new MutationObserver(function(mutations) {
mutations.forEach(function(mutation) {
if (mutation.type === 'attributes') {
var $target = $(mutation.target);
if ($target.hasClass('dropdown-toggle')) {
var $dropdown = $target.closest('.dropdown, .nav-item');
var isExpanded = $target.attr('aria-expanded') === 'true';

if (isExpanded) {
$dropdown.addClass('open');
} else {
$dropdown.removeClass('open');
}
}
}
});
});

// Observe all dropdown toggles for aria-expanded changes
$('.navbar-nav .dropdown-toggle').each(function() {
observer.observe(this, {
attributes: true,
attributeFilter: ['aria-expanded']
});
});
}

// Initialize observer
observeDropdownChanges();

// Fallback: Listen for click events and check state after a brief delay
$('.navbar-nav .dropdown-toggle').on('click', function() {
var $this = $(this);
var $dropdown = $this.closest('.dropdown, .nav-item');

// Check state after Quarto/Bootstrap has processed the click
setTimeout(function() {
var isExpanded = $this.attr('aria-expanded') === 'true';
if (isExpanded) {
$dropdown.addClass('open');
} else {
$dropdown.removeClass('open');
}
}, 50);
});

// Handle Bootstrap dropdown events if they exist
$('.navbar-nav .dropdown, .navbar-nav .nav-item').on('show.bs.dropdown', function() {
$(this).addClass('open');
});

$('.navbar-nav .dropdown, .navbar-nav .nav-item').on('hide.bs.dropdown', function() {
$(this).removeClass('open');
});
});
3 changes: 1 addition & 2 deletions docs/dissertation.html
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
<link href="site_libs/quarto-html/quarto-syntax-highlighting-e1a5c8363afafaef2c763b6775fbf3ca.css" rel="stylesheet" id="quarto-text-highlighting-styles">
<script src="site_libs/bootstrap/bootstrap.min.js"></script>
<link href="site_libs/bootstrap/bootstrap-icons.css" rel="stylesheet">
<link href="site_libs/bootstrap/bootstrap-fdf1bca80bd9d483901bef3fce78339d.min.css" rel="stylesheet" append-hash="true" id="quarto-bootstrap" data-mode="light">
<link href="site_libs/bootstrap/bootstrap-dd9c779e94494289bcc721e80c3d99cc.min.css" rel="stylesheet" append-hash="true" id="quarto-bootstrap" data-mode="light">
<script src="site_libs/quarto-contrib/iconify-2.1.0/iconify-icon.min.js"></script>
<script id="quarto-search-options" type="application/json">{
"location": "navbar",
Expand Down Expand Up @@ -104,7 +104,6 @@
}</script>


<link rel="stylesheet" href="assets/css/website-styles.css">
<link rel="stylesheet" href="assets/css/documents.css">
<meta property="og:title" content="Dissertation – A GitHub repository featuring a starter template for R package development, paired with a Quarto-powered website">
<meta property="og:description" content="">
Expand Down
3 changes: 1 addition & 2 deletions docs/documents.html
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
<link href="site_libs/quarto-html/quarto-syntax-highlighting-e1a5c8363afafaef2c763b6775fbf3ca.css" rel="stylesheet" id="quarto-text-highlighting-styles">
<script src="site_libs/bootstrap/bootstrap.min.js"></script>
<link href="site_libs/bootstrap/bootstrap-icons.css" rel="stylesheet">
<link href="site_libs/bootstrap/bootstrap-fdf1bca80bd9d483901bef3fce78339d.min.css" rel="stylesheet" append-hash="true" id="quarto-bootstrap" data-mode="light">
<link href="site_libs/bootstrap/bootstrap-dd9c779e94494289bcc721e80c3d99cc.min.css" rel="stylesheet" append-hash="true" id="quarto-bootstrap" data-mode="light">
<script src="site_libs/quarto-contrib/iconify-2.1.0/iconify-icon.min.js"></script>
<script id="quarto-search-options" type="application/json">{
"location": "navbar",
Expand Down Expand Up @@ -70,7 +70,6 @@
}</script>


<link rel="stylesheet" href="assets/css/website-styles.css">
<link rel="stylesheet" href="assets/css/documents.css">
<meta property="og:title" content="Documents – A GitHub repository featuring a starter template for R package development, paired with a Quarto-powered website">
<meta property="og:description" content="Technical reports, blogs, and documentation">
Expand Down
3 changes: 1 addition & 2 deletions docs/getting_started.html
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
<link href="site_libs/quarto-html/quarto-syntax-highlighting-e1a5c8363afafaef2c763b6775fbf3ca.css" rel="stylesheet" id="quarto-text-highlighting-styles">
<script src="site_libs/bootstrap/bootstrap.min.js"></script>
<link href="site_libs/bootstrap/bootstrap-icons.css" rel="stylesheet">
<link href="site_libs/bootstrap/bootstrap-fdf1bca80bd9d483901bef3fce78339d.min.css" rel="stylesheet" append-hash="true" id="quarto-bootstrap" data-mode="light">
<link href="site_libs/bootstrap/bootstrap-dd9c779e94494289bcc721e80c3d99cc.min.css" rel="stylesheet" append-hash="true" id="quarto-bootstrap" data-mode="light">
<script src="site_libs/quarto-contrib/iconify-2.1.0/iconify-icon.min.js"></script>
<script id="quarto-search-options" type="application/json">{
"location": "navbar",
Expand Down Expand Up @@ -104,7 +104,6 @@
}</script>


<link rel="stylesheet" href="assets/css/website-styles.css">
<link rel="stylesheet" href="assets/css/documents.css">
<meta property="og:title" content="Getting Started with packageSkeleton – A GitHub repository featuring a starter template for R package development, paired with a Quarto-powered website">
<meta property="og:description" content="">
Expand Down
3 changes: 1 addition & 2 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
<link href="site_libs/quarto-html/quarto-syntax-highlighting-e1a5c8363afafaef2c763b6775fbf3ca.css" rel="stylesheet" id="quarto-text-highlighting-styles">
<script src="site_libs/bootstrap/bootstrap.min.js"></script>
<link href="site_libs/bootstrap/bootstrap-icons.css" rel="stylesheet">
<link href="site_libs/bootstrap/bootstrap-fdf1bca80bd9d483901bef3fce78339d.min.css" rel="stylesheet" append-hash="true" id="quarto-bootstrap" data-mode="light">
<link href="site_libs/bootstrap/bootstrap-dd9c779e94494289bcc721e80c3d99cc.min.css" rel="stylesheet" append-hash="true" id="quarto-bootstrap" data-mode="light">
<script src="site_libs/quarto-contrib/iconify-2.1.0/iconify-icon.min.js"></script>
<script id="quarto-search-options" type="application/json">{
"location": "navbar",
Expand Down Expand Up @@ -69,7 +69,6 @@
}</script>


<link rel="stylesheet" href="assets/css/website-styles.css">
<link rel="stylesheet" href="assets/css/documents.css">
<meta property="og:title" content="A GitHub repository featuring a starter template for R package development, paired with a Quarto-powered website">
<meta property="og:image" content="https://centerforassessment.github.io/packageSkeleton/assets/img/packageSkeleton.png">
Expand Down
3 changes: 1 addition & 2 deletions docs/license.html
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
<link href="site_libs/quarto-html/quarto-syntax-highlighting-e1a5c8363afafaef2c763b6775fbf3ca.css" rel="stylesheet" id="quarto-text-highlighting-styles">
<script src="site_libs/bootstrap/bootstrap.min.js"></script>
<link href="site_libs/bootstrap/bootstrap-icons.css" rel="stylesheet">
<link href="site_libs/bootstrap/bootstrap-fdf1bca80bd9d483901bef3fce78339d.min.css" rel="stylesheet" append-hash="true" id="quarto-bootstrap" data-mode="light">
<link href="site_libs/bootstrap/bootstrap-dd9c779e94494289bcc721e80c3d99cc.min.css" rel="stylesheet" append-hash="true" id="quarto-bootstrap" data-mode="light">
<script src="site_libs/quarto-contrib/iconify-2.1.0/iconify-icon.min.js"></script>
<script id="quarto-search-options" type="application/json">{
"location": "navbar",
Expand Down Expand Up @@ -69,7 +69,6 @@
}</script>


<link rel="stylesheet" href="assets/css/website-styles.css">
<link rel="stylesheet" href="assets/css/documents.css">
<meta property="og:title" content="MIT License – A GitHub repository featuring a starter template for R package development, paired with a Quarto-powered website">
<meta property="og:description" content="">
Expand Down
3 changes: 1 addition & 2 deletions docs/news.html
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
<link href="site_libs/quarto-html/quarto-syntax-highlighting-e1a5c8363afafaef2c763b6775fbf3ca.css" rel="stylesheet" id="quarto-text-highlighting-styles">
<script src="site_libs/bootstrap/bootstrap.min.js"></script>
<link href="site_libs/bootstrap/bootstrap-icons.css" rel="stylesheet">
<link href="site_libs/bootstrap/bootstrap-fdf1bca80bd9d483901bef3fce78339d.min.css" rel="stylesheet" append-hash="true" id="quarto-bootstrap" data-mode="light">
<link href="site_libs/bootstrap/bootstrap-dd9c779e94494289bcc721e80c3d99cc.min.css" rel="stylesheet" append-hash="true" id="quarto-bootstrap" data-mode="light">
<script src="site_libs/quarto-contrib/iconify-2.1.0/iconify-icon.min.js"></script>
<script id="quarto-search-options" type="application/json">{
"location": "navbar",
Expand Down Expand Up @@ -69,7 +69,6 @@
}</script>


<link rel="stylesheet" href="assets/css/website-styles.css">
<link rel="stylesheet" href="assets/css/documents.css">
<meta property="og:title" content="News – A GitHub repository featuring a starter template for R package development, paired with a Quarto-powered website">
<meta property="og:description" content="">
Expand Down
3 changes: 1 addition & 2 deletions docs/overview.html
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
<link href="site_libs/quarto-html/quarto-syntax-highlighting-e1a5c8363afafaef2c763b6775fbf3ca.css" rel="stylesheet" id="quarto-text-highlighting-styles">
<script src="site_libs/bootstrap/bootstrap.min.js"></script>
<link href="site_libs/bootstrap/bootstrap-icons.css" rel="stylesheet">
<link href="site_libs/bootstrap/bootstrap-fdf1bca80bd9d483901bef3fce78339d.min.css" rel="stylesheet" append-hash="true" id="quarto-bootstrap" data-mode="light">
<link href="site_libs/bootstrap/bootstrap-dd9c779e94494289bcc721e80c3d99cc.min.css" rel="stylesheet" append-hash="true" id="quarto-bootstrap" data-mode="light">
<script src="site_libs/quarto-contrib/iconify-2.1.0/iconify-icon.min.js"></script>
<script id="quarto-search-options" type="application/json">{
"location": "navbar",
Expand Down Expand Up @@ -69,7 +69,6 @@
}</script>


<link rel="stylesheet" href="assets/css/website-styles.css">
<link rel="stylesheet" href="assets/css/documents.css">
<meta property="og:title" content="A GitHub repository featuring a starter template for R package development, paired with a Quarto-powered website">
<meta property="og:description" content="">
Expand Down
3 changes: 1 addition & 2 deletions docs/presentations.html
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
<link href="site_libs/quarto-html/quarto-syntax-highlighting-e1a5c8363afafaef2c763b6775fbf3ca.css" rel="stylesheet" id="quarto-text-highlighting-styles">
<script src="site_libs/bootstrap/bootstrap.min.js"></script>
<link href="site_libs/bootstrap/bootstrap-icons.css" rel="stylesheet">
<link href="site_libs/bootstrap/bootstrap-fdf1bca80bd9d483901bef3fce78339d.min.css" rel="stylesheet" append-hash="true" id="quarto-bootstrap" data-mode="light">
<link href="site_libs/bootstrap/bootstrap-dd9c779e94494289bcc721e80c3d99cc.min.css" rel="stylesheet" append-hash="true" id="quarto-bootstrap" data-mode="light">
<script src="site_libs/quarto-contrib/iconify-2.1.0/iconify-icon.min.js"></script>
<script id="quarto-search-options" type="application/json">{
"location": "navbar",
Expand Down Expand Up @@ -69,7 +69,6 @@
}</script>


<link rel="stylesheet" href="assets/css/website-styles.css">
<link rel="stylesheet" href="assets/css/documents.css">
<link rel="stylesheet" href="./assets/css/presentations-custom.css">
<meta property="og:title" content="Presentations – A GitHub repository featuring a starter template for R package development, paired with a Quarto-powered website">
Expand Down

Large diffs are not rendered by default.

This file was deleted.

22 changes: 22 additions & 0 deletions quarto_website/404.qmd
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
---
format:
html:
toc: false
number-sections: false
html: true
page-layout: full
---

::: {.error-404-container}

[![](assets/img/packageSkeleton_404.png){.error-404-image}](https://centerforassessment.github.io/packageSkeleton/)

::: {.error-404-title}
Error 404 - Page Not Found
:::

::: {.error-404-subtitle}
The page you're looking for doesn't exist.
:::

:::
1 change: 0 additions & 1 deletion quarto_website/_quarto.yml
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,6 @@ format:
- cosmo
- ./assets/css/website-custom.scss
css:
- ./assets/css/website-styles.css
- ./assets/css/documents.css
toc: true
include-after: |
Expand Down
Loading
Loading