-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
84 lines (71 loc) · 3.67 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
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
<!DOCTYPE html>
<html class="welcome">
<head>
<title>Welcome to GitHub Well-Architected</title>
<link rel="stylesheet" href="./index.css" />
</head>
<body>
<div class="welcome">
<h1>Welcome to GH Well-Architected (unofficial)</h1>
<p>GH Well-Architected is a set of assessments to prompt discussions around configuring secure, high-performing,
resilient, and efficient
GitHub.</p>
<div class="welcome-important">
<h2>⚠️ Important</h2>
<p>GH Well-Architected is not an official GitHub product. It is a community project, created by Stu
Eggerton, a
GitHub Solution Architect.</p>
<p>The website and content generated from this website does not have any warranty. Use at own risk.</p>
</div>
<h2>Assessments</h2>
<p>Please check out our assessments:
<ul>
<li><a href="survey.html?assessment=emu">GitHub Well-Architected - High Level</a></li>
<li><a href="survey.html?assessment=actions">GitHub Well-Architected - Actions</a></li>
</ul>
</p>
<h2>How does it work?</h2>
<p>Learn more about <a href="https://github.com/gitstua/gh-assessment">GH Well-Architected</a></p>
<p>GH Well-Architected is intended to become an open-source project.</p>
<h2>Other uses for this codebase</h2>
<p>You can also find a <a
href=" https://stuarteggerton.com/gh-assessment/?assessment=quiz-foundations"> quiz</a> to help practice
**GitHub Fundamentals**</p>
<h2>FAQ</h2>
<div class="faq">
<p><strong>Q: How do I get started?</strong></p>
<p>A: Click on one of the assessments above to get started.</p>
<p><strong>Q: How do I export my results?</strong></p>
<p>A: Click on the "Export to CSV" button at the end of the assessment.</p>
<p><strong>Q: How do I reset my results?</strong></p>
<p>A: Click on the "Reset" button at the end of the assessment.</p>
<p><strong>Q: How do I change my answers?</strong></p>
<p>A: Press previous. At this time you need to reset and restart once you have completed the survey.</p>
<p><strong>Q: Does this replace all the smart people in my team and those who help us from GitHub?</strong>
</p>
<p>A: No. This is a tool to help you have a conversation with your team and GitHub. It is not a replacement
for the smart people you work with. You should use this to start proactive conversations with these
people around what
meets your personal goals with GitHub. </p>
<p><strong>Q: What if I think something is wrong with the content or have suggestions?</strong></p>
<p>A: Please raise an issue on the <a href="https://github.com/gitstua/gh-assessment/issues">repo</a> - be
sure to search in case this issue has already been raised.
</p>
</div>
</div>
<footer>
<p>Created with ❤️ by Stu Eggerton - <a
href='https://github.com/gitstua/gh-assessment/'>github.com/gitstua/gh-assessment</a></p>
</footer>
<script>
// if the querysting has a value for assessment then forward to survey.html and pass the query string
// otherwise, show the welcome page
const queryString = window.location.search;
const urlParams = new URLSearchParams(queryString);
const assessment = urlParams.get('assessment')
if (assessment) {
window.location.href = "survey.html" + queryString;
}
</script>
</body>
</html>