-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from Boehringer-Ingelheim/initial-homepage
Initial homepage
- Loading branch information
Showing
12 changed files
with
102 additions
and
63 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: main | ||
|
||
name: Quarto Publish | ||
|
||
jobs: | ||
build-deploy: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: write | ||
steps: | ||
- name: Check out repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Set up Quarto | ||
uses: quarto-dev/quarto-actions/setup@v2 | ||
|
||
- name: Render and Publish | ||
uses: quarto-dev/quarto-actions/publish@v2 | ||
with: | ||
target: gh-pages | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,4 @@ | ||
.Rproj.user | ||
|
||
/.quarto/ | ||
/_site/ |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,3 @@ | ||
# Convenience installer for DaVinci R packages | ||
|
||
## Installation | ||
|
||
``` r | ||
if (!require("remotes")) install.packages("remotes") | ||
remotes::install_github("Boehringer-Ingelheim/davinci", upgrade = TRUE) | ||
``` | ||
# Initial website for the DaVinci framework | ||
|
||
[DaVinci website](https://boehringer-ingelheim.github.io/davinci/) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
project: | ||
type: website | ||
|
||
website: | ||
title: "DaVinCI" | ||
favicon: quarto/images/davinci_hex.png | ||
navbar: | ||
logo: quarto/images/davinci_hex.png | ||
page-footer: | ||
center: | ||
- text: "This website as well as the DaVinCI packages are licensed under the Apache License, Version 2.0." # nolint | ||
|
||
format: | ||
html: | ||
theme: [cosmo, quarto/general.scss] | ||
css: styles.css | ||
toc: false | ||
page-layout: full | ||
anchor-sections: true | ||
|
||
execute: | ||
freeze: auto | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
--- | ||
title: "DaVinCI" | ||
--- | ||
|
||
## Dynamic Visualization for Clinical Insights | ||
|
||
### What is DaVinCI? | ||
::: columns | ||
::: {.column width="20%"} | ||
|
||
![](quarto/images/davinci_hex.png){width="150"} | ||
::: | ||
|
||
::: {.column width="80%"} | ||
|
||
DaVinCI offers R/Shiny based tools to review, aggregate and visualize data arising from clinical trials, supporting the goal of developing and delivering safe and effective treatments for patients. However, instead of creating entire R/Shiny applications, DaVinCI provides individual modules. Modules are functional building blocks that can be linked together into customized apps. This customization enables App Creators to build their own app according to trial-specific needs without deep R knowledge. | ||
|
||
::: | ||
::: | ||
|
||
### Our commitment and contribution to open-source | ||
|
||
DaVinCI software development including the codebase will be made fully open-source, which will allow you to use or co-develop DaVinCI. | ||
Our initial open-source release is planned by **Q3-2024!** | ||
Don't miss our release and other DaVinCI related news, and join the [DaVinCI LinkedIn group](https://www.linkedin.com/groups/13052407/){target="_blank"} today! | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
/*-- scss:defaults --*/ | ||
|
||
|
||
//$body-bg: #E5E3DE; | ||
$body-bg: #F6F5F3; | ||
$link-color: #70A0CC; | ||
$nav-tabs-link-active-bg: #00E47C; | ||
$nav-tabs-link-active-color: #00E47C; | ||
|
||
// Navbar | ||
$navbar-bg: #002b36; | ||
$navbar-fg: #00E47C; | ||
$navbar-hl: #00E47C; | ||
|
||
// Footer | ||
$footer-bg: #002b36; | ||
$footer-fg: #00E47C; | ||
|
||
|
||
|
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
/* css styles */ |