-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpartners_university-of-sheffield.Rmd
118 lines (72 loc) · 2.8 KB
/
partners_university-of-sheffield.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
---
output:
html_document:
toc: true
toc_float:
collapsed: false
editor_options:
chunk_output_type: console
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(
echo = TRUE,
message = FALSE,
warning = FALSE
)
```
<div class='row'>
<div class="col-md-4 align-self-center">
<center>
<img src="images/rse-sheffield_logo.png" width="250px">
</center>
</div>
<div class="col-md-8 align-self-center">
The ORDA provides specialist support and advice for researchers at University of Sheffield in the use of the XXX service described in this website.
You may wish to refer to the dedicated [orda](rse.shef.ac.uk) for more information about all support available to Sheffield researchers in designing, creating and hosting interactive data visualisations of research outputs.
</div>
</div>
# rmd_template_support
If you want to add a new service to the OxShef collaboration using this [oxshef_rmd_template](github.com/OxShef/oxshef_rmd_template) and are resident at University of Sheffield, please contact [email protected]
Note that there is not necessarily enough space in the horiztonal navigation for links for researchers at Oxford and/or Sheffield, this template therefore makes available the following Bootstrap alert that may be easily included in the YAML header as follows:
```yaml
output:
html_document:
toc_float: false
includes:
before_body: [includes/include_header.html, includes/include_institutional-support.html]
```
<!--html_preserve-->
<div class="alert alert-info alert-dismissible" role="alert">
<div class='container-fluid'>
<button type="button" class="close" data-dismiss="alert" aria-label="Close"><span aria-hidden="true">×</span></button>
</div>
<div class='row'>
<div class='col-md-6 align-self-center'>
<div class='row'>
<div class='col-sm-6 align-self-center'>
<span>Researchers at <strong>University of Oxford</strong> can use the ORDA service XXX to host interactive visualisations produced with XXX.</span>
See <a href='idn_info.html' style='color:#fff;font-weight:bold'>here for further details</a>.</span>
</div>
<div class='col-sm-6 align-self-center'>
<center>
<img src='images/idn_logo.png' width='250px'></img>
</center>
</div>
</div>
</div>
<div class='col-md-6 align-self-center'>
<div class='row'>
<div class='col-sm-6 align-self-center'>
<span>Researchers at <strong>University of Sheffield</strong> can use the ORDA service XXX to host interactive visualisations produced with XXX.</span>
See <a href='orda_info.html' style='color:#fff;font-weight:bold'>here for further details</a>.</span>
</div>
<div class='col-sm-6 align-self-center'>
<center>
<img src='images/rse-sheffield_logo.png' width='250px'></img>
</center>
</div>
</div>
</div>
</div>
</div>
<!--/html_preserve-->