-
-
Notifications
You must be signed in to change notification settings - Fork 579
/
index.html
52 lines (51 loc) · 2.2 KB
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width,initial-scale=1">
<meta charset="UTF-8">
<meta property="og:site_name" content="How They Test"
<meta property="og:url" content="https://abhivaikar.github.io/howtheytest/">
<meta property="og:type" content="website" />
<meta property="og:description"
content="How They Test - A curated collection of publicly available resources on how software companies around the world test their software systems and build their quality culture.">
<meta property="og:title" content="How They Test">
<meta property="og:image" content="https://github.com/abhivaikar/howtheytest/blob/master/howtheytest-banner-transparent.png?raw=true">
<!-- Twitter Card -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:image" content="https://github.com/abhivaikar/howtheytest/blob/master/howtheytest-banner-transparent.png?raw=true" />
<meta name="twitter:image:alt" content="How They Test" />
<meta name="twitter:description" content="How They Test - A curated collection of publicly available resources on how software companies around the world test their software systems and build their quality culture." />
<title>How They Test</title>
<link
rel="stylesheet"
href="//cdn.jsdelivr.net/npm/docsify-darklight-theme@latest/dist/style.min.css"
title="docsify-darklight-theme"
type="text/css"
/>
</head>
<body>
<div id="app"></div>
<script>
window.$docsify = {
name: 'howtheytest',
coverpage: true,
hideSidebar: true,
darklightTheme: {
siteFont : 'Source Sans Pro',
dark: {
coverBackground : 'linear-gradient(to left bottom, hsl(206, 100%, 85%) 0%,hsl(13, 100%, 85%) 100%)'
},
light: {
coverBackground : 'linear-gradient(to left bottom, hsl(206, 100%, 85%) 0%,hsl(13, 100%, 85%) 100%)'
}
}
}
</script>
<script src="//cdn.jsdelivr.net/npm/docsify/lib/docsify.min.js"></script>
<script
src="//cdn.jsdelivr.net/npm/docsify-darklight-theme@latest/dist/index.min.js"
type="text/javascript">
</script>
</body>
</html>