Skip to content

Commit

Permalink
Added new files
Browse files Browse the repository at this point in the history
  • Loading branch information
royfrancis committed Jan 2, 2024
1 parent a4fa855 commit 8fe577d
Show file tree
Hide file tree
Showing 71 changed files with 66,425 additions and 1 deletion.
53 changes: 53 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
name: deploy
on:
push:
branches:
- main

jobs:
deploy:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Check out repo
uses: actions/checkout@v3
- name: Setup R
uses: r-lib/actions/setup-r@v2
- name: Install packages
uses: r-lib/actions/setup-r-dependencies@v2
with:
cache-version: 2
packages: |
any::dplyr
any::tidyr
any::stringr
any::htmlTable
any::kableExtra
any::formattable
any::DT
any::gt
any::reactable
any::ggplot2
any::highcharter
any::plotly
any::ggiraph
any::dygraphs
any::networkD3
any::leaflet
any::crosstalk
any::fontawesome
any::knitr
- name: Setup quarto
uses: quarto-dev/quarto-actions/setup@v2
with:
tinytex: true
- run: |
quarto --version
- name: Render and publish
uses: quarto-dev/quarto-actions/publish@v2
with:
target: gh-pages
render: true
env:
GITHUB_TOKEN: ${{ secrets.TOKEN }}
12 changes: 12 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
**/.Rhistory
*.Rproj*
*.code-workspace
**/.ipynb_checkpoints
/.luarc.json
/.quarto/
.DS_Store
todo.txt
**/*_cache/
**/__pycache__
slides/**/*_files
labs/**/*_files
18 changes: 18 additions & 0 deletions .quartoignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
**/*_cache/
**/__pycache__
**/*_cache
**/*_files
README.md
.git
.github
.gitignore
.Rhistory
preview*
docs
reports/demo/
reports/demo-with-r/
reports/more/
reports/usage/
slides/demo/
slides/demo/
.nojekyll
22 changes: 22 additions & 0 deletions 404.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
---
pagetitle: "404: Page not found"
subtitle: ""
date: ""
toc: false
sidebar: false
number-sections: false
format: html
execute:
freeze: false
---

::: {style="text-align: center;"}

[404]{.fourofour}

# 404: Page not found

It seems like you have stumbled upon a page that doesn't exist.
Please check your URL again.

:::
51 changes: 50 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,50 @@
# specky
# specky <span><a href="https://github.com/royfrancis/specky"><img src="assets/logo.png" style="height:40px;vertical-align:middle;"></a></span>

[![ci_badge](https://github.com/royfrancis/specky/workflows/deploy/badge.svg)](https://github.com/royfrancis/specky/actions?workflow=deploy) [![lifecycle_badge](https://lifecycle.r-lib.org/articles/figures/lifecycle-experimental.svg)](https://lifecycle.r-lib.org/articles/stages.html#experimental)

Quarto website template.

![Report home](preview-home.jpg)

![Report preview](preview-report.jpg)

![Slide preview](preview-slide.jpg)

For a demo site and usage, see [here](https://royfrancis.github.io/specky).

## Usage

- Required quarto 1.3.4 or higher
- To download and use a starter template, run in the terminal

:exclamation: Demo files are not downloaded

```
quarto use template royfrancis/specky
```

- Launch preview in the browser

```
quarto preview
```

- Render all html files into `docs` directory

```
quarto render
```


- Use `##` as the highest level heading.

## Acknowledgements

- Built using [Quarto](https://quarto.org/)
- Uses the [lightbox extension](https://github.com/quarto-ext/lightbox) for viewing images
- Uses the [fontawesome extension](https://github.com/quarto-ext/fontawesome) for icons
- Uses the [reveal-logo extension](https://github.com/royfrancis/reveal-logo) for logos in presentation

---

2024 • Roy Francis
7 changes: 7 additions & 0 deletions _extensions/quarto-ext/fontawesome/_extension.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
title: Font Awesome support
author: Carlos Scheidegger
version: 1.1.0
quarto-required: ">=1.2.269"
contributes:
shortcodes:
- fontawesome.lua
Loading

0 comments on commit 8fe577d

Please sign in to comment.