Skip to content

Commit

Permalink
modify pages
Browse files Browse the repository at this point in the history
  • Loading branch information
jinwooYoon committed Oct 10, 2023
1 parent 3a669f4 commit 6c55e65
Show file tree
Hide file tree
Showing 3 changed files with 121 additions and 1 deletion.
113 changes: 113 additions & 0 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@
h6 {font-size: 12px;}
code {color: inherit; background-color: rgba(0, 0, 0, 0.04);}
pre:not([class]) { background-color: white }</style>
<script src="site_libs/jqueryui-1.13.2/jquery-ui.min.js"></script>
<link href="site_libs/tocify-1.9.1/jquery.tocify.css" rel="stylesheet" />
<script src="site_libs/tocify-1.9.1/jquery.tocify.js"></script>
<script src="site_libs/navigation-1.1/tabsets.js"></script>
<link href="site_libs/highlightjs-9.12.0/default.css" rel="stylesheet" />
<script src="site_libs/highlightjs-9.12.0/highlight.js"></script>
Expand Down Expand Up @@ -223,6 +226,75 @@



<style type="text/css">

#TOC {
margin: 25px 0px 20px 0px;
}
@media (max-width: 768px) {
#TOC {
position: relative;
width: 100%;
}
}

@media print {
.toc-content {
/* see https://github.com/w3c/csswg-drafts/issues/4434 */
float: right;
}
}

.toc-content {
padding-left: 30px;
padding-right: 40px;
}

div.main-container {
max-width: 1200px;
}

div.tocify {
width: 20%;
max-width: 260px;
max-height: 85%;
}

@media (min-width: 768px) and (max-width: 991px) {
div.tocify {
width: 25%;
}
}

@media (max-width: 767px) {
div.tocify {
width: 100%;
max-width: none;
}
}

.tocify ul, .tocify li {
line-height: 20px;
}

.tocify-subheader .tocify-item {
font-size: 0.90em;
}

.tocify .list-group-item {
border-radius: 0px;
}

.tocify-subheader {
display: inline;
}
.tocify-subheader .tocify-item {
font-size: 0.95em;
}

</style>



</head>

Expand All @@ -232,6 +304,16 @@
<div class="container-fluid main-container">


<!-- setup 3col/9col grid for toc_float and main content -->
<div class="row">
<div class="col-xs-12 col-sm-4 col-md-3">
<div id="TOC" class="tocify">
</div>
</div>

<div class="toc-content col-xs-12 col-sm-8 col-md-9">




<div class="navbar navbar-default navbar-fixed-top" role="navigation">
Expand Down Expand Up @@ -370,6 +452,8 @@ <h2><strong>Get Involved</strong></h2>



</div>
</div>

</div>

Expand Down Expand Up @@ -402,6 +486,35 @@ <h2><strong>Get Involved</strong></h2>

<!-- code folding -->

<script>
$(document).ready(function () {

// temporarily add toc-ignore selector to headers for the consistency with Pandoc
$('.unlisted.unnumbered').addClass('toc-ignore')

// move toc-ignore selectors from section div to header
$('div.section.toc-ignore')
.removeClass('toc-ignore')
.children('h1,h2,h3,h4,h5').addClass('toc-ignore');

// establish options
var options = {
selectors: "h1,h2,h3",
theme: "bootstrap3",
context: '.toc-content',
hashGenerator: function (text) {
return text.replace(/[.\\/?&!#<>]/g, '').replace(/\s/g, '_');
},
ignoreSelector: ".toc-ignore",
scrollTo: 0
};
options.showAndHide = false;
options.smoothScroll = true;

// tocify
var toc = $("#TOC").tocify(options).data("toc-tocify");
});
</script>

<!-- dynamically load mathjax for compatibility with self-contained -->
<script>
Expand Down
9 changes: 8 additions & 1 deletion rmd/index.Rmd
Original file line number Diff line number Diff line change
@@ -1,8 +1,15 @@
---
title: '<div><img src="images/ohdsi40x40.png"></img> OHDSI Medical Image WG </div>'
output: html_document
output:
html_document:
toc: TRUE
toc_depth: 3
toc_float:
collapsed: false
---



## **Mission**

The OHDSI Medical Imaging Working Group aims to represent medical imaging data in the OMOP CDM. The differing formats between EHR and imaging data have led to difficult to conduct research across these data sources. Researchers using EHR data often have access to the disease burden or patient outcomes common in medical records, while imaging researchers can study biomarkers and granular changes in diseases that are provided by medical imaging. Combining these sources will enable more holistic reproducible research. Our aim is to link algorithmically generated measurements into the OMOP data model to harness these deeper phenotypes with the outcome measures tracked in the EHR.
Expand Down

0 comments on commit 6c55e65

Please sign in to comment.