-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_template.html
More file actions
99 lines (84 loc) · 2.88 KB
/
Copy path_template.html
File metadata and controls
99 lines (84 loc) · 2.88 KB
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
<!DOCTYPE html>
<html lang="en-US">
<head>
<title>Evidence-based Management in Healthcare</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="description" content="" />
<meta name="keywords" content="" />
<meta name="robots" content="index,follow" />
<link rel="stylesheet" type="text/css" href="styles.css" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" href="/include/includeHTML.css">
<script src="/include/includeHTML.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="/ebmgt.js"></script>
<style>
* {background-color: #9F8869;}
* {
box-sizing: border-box;
/* border: solid #9F8869; */
}
/* Create two equal columns that floats next to each other */
.column {
float: left;
width: 50%;
padding: 10px;
/* height: 300px; Should be removed. Only for demonstration */
}
/* Clear floats after the columns */
.row:after {
content: "";
display: table;
clear: both;
}
/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
.column {
width: 100%;
}
}
</style>
</head>
<body>
<h1>Evidence-based Management in healthcare</h1>
<h2>Original research to inform management practices</h2>
<!--#include virtual="/include/menu.htm" -->
<!-- or use https://www.w3schools.com/howto/howto_html_include.asp -->
<div w3-include-html="/include/menu.html"></div>
<!-- see also https://www.w3schools.com/w3css/w3css_navigation.asp -->
<div class="row">
<div class="column">
</div>
<div class="column">
</div>
</div>
<p>This project is maintained by <a href="https://ebmgt.github.io/">ebmgt.github.io/</a></p>
<div> </div>
<div> </div>
<div> </div>
<div> </div>
<script>
//For gh-pages
//Page history and edit
var pagename = location.pathname.split('/').slice(-1);
if (pagename.toString().length < 1){pagename = "index.html"}
document.write("<div style='text-align:center'><a href='https://github.com/ebmgt/ebmgt.github.io/blob/master/" + pagename + "'>Edit this page</a> - <a href='https://github.com/ebmgt/ebmgt.github.io/commits/master/" + pagename + "'>Page history</a></div>")
</script>
<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">
try {
var pageTracker = _gat._getTracker("UA-56740469-1");
pageTracker._trackPageview();
} catch(err) {}
</script>
<div id="tip" style="display:none"></div>
<!-- per https://www.w3schools.com/howto/howto_html_include.asp -->
<script>
includeHTML();
</script>
</body>
</html>