Skip to content

Commit

Permalink
basic template
Browse files Browse the repository at this point in the history
  • Loading branch information
DivadNojnarg committed Oct 17, 2022
1 parent a0576a2 commit 75e6e06
Show file tree
Hide file tree
Showing 78 changed files with 6,267 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
.Rproj.user
.Rhistory
.RData
.Ruserdata
25 changes: 25 additions & 0 deletions dracula.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
/*-- scss:defaults --*/

// fonts
$font-family-sans-serif: "Times", "Abril Text";
$font-family-monospace: "Fira-code", "Arial";

// colors
$body-bg: #1d1e26 !default;
$body-color: #f8f8f2 !default;
$link-color: $body-color;
$link-color-hover: #8774e5 !default;
$selection-bg: #868689 !default;

$code-bg: #272a36 !default;
$code-block-bg: $code-bg;
$code-color: $body-color;
$code-block-border-color: $body-bg;

$tabset-border-color: $body-bg;

// headings

/*-- scss:rules --*/


818 changes: 818 additions & 0 deletions index.html

Large diffs are not rendered by default.

76 changes: 76 additions & 0 deletions index.qmd
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
---
title: My Slide Show
subtitle: '`r Sys.Date()`'
author: "David Granjon, Novartis"
format:
revealjs:
css: "styles/dracula-ui.css"
theme: "dracula.scss"
echo: true
code-link: true
footer: "Novartis, 2022"
template-partials:
- title-slide.html
highlight-style: dracula
---

```{r setup, include = FALSE}
library(emo)
```

## Program
We're in for 2 hours of **fun**!

- Grab a `r ji("coffee")`
- Make yourself comfortable `r ji("couch")` or 🧘
- Ask questions `r ji("question")`

1. Introduction __5 min__
2. Setup {shinyValidator} __45 min__
3. Analyse {shinyValidator} report __45 min__
4. Questions

## Quarto

<div class="drac-box drac-card drac-bg-purple drac-p-sm">
<span class="drac-text drac-line-height drac-text-black">Dracula</span>
</div>

:::: {.columns}

::: {.column width="40%"}
contents...
:::

::: {.column width="60%"}
contents...
:::

::::

## Bullets

::: {.panel-tabset}

### Tab A

[Preview](https://example.com){preview-link="true"}

### Tab B

Content for `Tab B`

:::

## Code

When you click the **Render** button a presentation will be generated that includes both content and the output of embedded code. You can embed code like this:

```{r}
#| output-location: column-fragment
#| code-line-numbers: "|2"
library(ggplot2)
1+1
```
7 changes: 7 additions & 0 deletions index_files/libs/clipboard/clipboard.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions index_files/libs/quarto-html/popper.min.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions index_files/libs/quarto-html/quarto-html.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

180 changes: 180 additions & 0 deletions index_files/libs/quarto-html/quarto-syntax-highlighting-dark.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 75e6e06

Please sign in to comment.