Skip to content

Commit 072a91f

Browse files
added UI/UX design guide (#37)
0 parents  commit 072a91f

File tree

166 files changed

+21346
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

166 files changed

+21346
-0
lines changed

.nojekyll

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
This file makes sure that Github Pages doesn't process mdBook's output.

404.html

+190
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,190 @@
1+
<!DOCTYPE HTML>
2+
<html lang="en" class="sidebar-visible no-js navy">
3+
<head>
4+
<!-- Book generated using mdBook -->
5+
<meta charset="UTF-8">
6+
<title>Page not found - Tech Start UCalgary Documentation</title>
7+
<base href="/">
8+
9+
10+
<!-- Custom HTML head -->
11+
12+
<meta name="description" content="">
13+
<meta name="viewport" content="width=device-width, initial-scale=1">
14+
<meta name="theme-color" content="#ffffff" />
15+
16+
<link rel="icon" href="favicon.svg">
17+
<link rel="shortcut icon" href="favicon.png">
18+
<link rel="stylesheet" href="css/variables.css">
19+
<link rel="stylesheet" href="css/general.css">
20+
<link rel="stylesheet" href="css/chrome.css">
21+
<link rel="stylesheet" href="css/print.css" media="print">
22+
23+
<!-- Fonts -->
24+
<link rel="stylesheet" href="FontAwesome/css/font-awesome.css">
25+
<link rel="stylesheet" href="fonts/fonts.css">
26+
27+
<!-- Highlight.js Stylesheets -->
28+
<link rel="stylesheet" href="highlight.css">
29+
<link rel="stylesheet" href="tomorrow-night.css">
30+
<link rel="stylesheet" href="ayu-highlight.css">
31+
32+
<!-- Custom theme stylesheets -->
33+
34+
</head>
35+
<body>
36+
<div id="body-container">
37+
<!-- Provide site root to javascript -->
38+
<script>
39+
var path_to_root = "";
40+
var default_theme = window.matchMedia("(prefers-color-scheme: dark)").matches ? "ayu" : "navy";
41+
</script>
42+
43+
<!-- Work around some values being stored in localStorage wrapped in quotes -->
44+
<script>
45+
try {
46+
var theme = localStorage.getItem('mdbook-theme');
47+
var sidebar = localStorage.getItem('mdbook-sidebar');
48+
49+
if (theme.startsWith('"') && theme.endsWith('"')) {
50+
localStorage.setItem('mdbook-theme', theme.slice(1, theme.length - 1));
51+
}
52+
53+
if (sidebar.startsWith('"') && sidebar.endsWith('"')) {
54+
localStorage.setItem('mdbook-sidebar', sidebar.slice(1, sidebar.length - 1));
55+
}
56+
} catch (e) { }
57+
</script>
58+
59+
<!-- Set the theme before any content is loaded, prevents flash -->
60+
<script>
61+
var theme;
62+
try { theme = localStorage.getItem('mdbook-theme'); } catch(e) { }
63+
if (theme === null || theme === undefined) { theme = default_theme; }
64+
var html = document.querySelector('html');
65+
html.classList.remove('no-js')
66+
html.classList.remove('navy')
67+
html.classList.add(theme);
68+
html.classList.add('js');
69+
</script>
70+
71+
<!-- Hide / unhide sidebar before it is displayed -->
72+
<script>
73+
var html = document.querySelector('html');
74+
var sidebar = 'hidden';
75+
if (document.body.clientWidth >= 1080) {
76+
try { sidebar = localStorage.getItem('mdbook-sidebar'); } catch(e) { }
77+
sidebar = sidebar || 'visible';
78+
}
79+
html.classList.remove('sidebar-visible');
80+
html.classList.add("sidebar-" + sidebar);
81+
</script>
82+
83+
<nav id="sidebar" class="sidebar" aria-label="Table of contents">
84+
<div class="sidebar-scrollbox">
85+
<ol class="chapter"><li class="chapter-item expanded affix "><a href="index.html">Tech Start UCalgary Documentation</a></li><li class="spacer"></li><li class="chapter-item expanded affix "><li class="part-title">Getting Started</li><li class="chapter-item expanded "><a href="installation/installfest/index.html"><strong aria-hidden="true">1.</strong> Installfest: from zero to hero</a></li><li class="chapter-item expanded "><a href="installation/wsl2/index.html"><strong aria-hidden="true">2.</strong> WSL2 Installation</a></li><li class="chapter-item expanded affix "><li class="part-title">Projects</li><li class="chapter-item expanded "><a href="projects/motivation/index.html"><strong aria-hidden="true">3.</strong> Motivation</a></li><li class="chapter-item expanded "><a href="projects/readme/index.html"><strong aria-hidden="true">4.</strong> A good README.md</a></li><li class="chapter-item expanded "><a href="projects/license/index.html"><strong aria-hidden="true">5.</strong> A LICENSE.md</a></li><li class="chapter-item expanded "><a href="projects/roadmap/index.html"><strong aria-hidden="true">6.</strong> A RoadMap</a></li><li class="chapter-item expanded "><a href="projects/demos/index.html"><strong aria-hidden="true">7.</strong> Demos</a></li><li><ol class="section"><li class="chapter-item expanded "><a href="projects/demos/1/index.html"><strong aria-hidden="true">7.1.</strong> Demo 1</a></li><li class="chapter-item expanded "><a href="projects/demos/2/index.html"><strong aria-hidden="true">7.2.</strong> Demo 2</a></li><li class="chapter-item expanded "><a href="projects/demos/3/index.html"><strong aria-hidden="true">7.3.</strong> Demo 3</a></li><li class="spacer"></li></ol></li><li class="chapter-item expanded "><li class="part-title">Software Development</li><li class="chapter-item expanded "><a href="software/career-paths/index.html"><strong aria-hidden="true">8.</strong> Career Paths</a></li><li class="chapter-item expanded "><a href="software/front-end/index.html"><strong aria-hidden="true">9.</strong> Front End</a></li><li class="chapter-item expanded "><a href="software/devops/index.html"><strong aria-hidden="true">10.</strong> DevOps</a></li><li class="spacer"></li><li class="chapter-item expanded affix "><li class="part-title">Guides</li><li class="chapter-item expanded "><a href="guides/Tech_Demo/index.html"><strong aria-hidden="true">11.</strong> Giving a good Technical Demo</a></li><li class="chapter-item expanded "><a href="guides/Django_Guide/index.html"><strong aria-hidden="true">12.</strong> Django</a></li><li class="chapter-item expanded "><a href="guides/Git_Guide/index.html"><strong aria-hidden="true">13.</strong> Git</a></li><li class="chapter-item expanded "><a href="guides/API_Guide/index.html"><strong aria-hidden="true">14.</strong> APIs</a></li><li class="chapter-item expanded "><a href="guides/React_Guide/index.html"><strong aria-hidden="true">15.</strong> React</a></li><li class="chapter-item expanded "><a href="guides/React_Native_Guide/index.html"><strong aria-hidden="true">16.</strong> React Native</a></li><li class="chapter-item expanded "><a href="guides/Web_Dev_Guide/index.html"><strong aria-hidden="true">17.</strong> Web Dev</a></li><li class="chapter-item expanded "><a href="guides/UI_UX_Design/index.html"><strong aria-hidden="true">18.</strong> UI/UX Design</a></li><li class="spacer"></li><li class="chapter-item expanded affix "><li class="part-title">Curated online resources</li><li class="chapter-item expanded "><a href="topics/conflict-management-styles/index.html"><strong aria-hidden="true">19.</strong> Dealing With Conflict</a></li><li class="chapter-item expanded "><a href="topics/css/index.html"><strong aria-hidden="true">20.</strong> CSS</a></li><li class="chapter-item expanded "><a href="topics/html/index.html"><strong aria-hidden="true">21.</strong> HTML</a></li><li class="chapter-item expanded "><a href="topics/management-styles/index.html"><strong aria-hidden="true">22.</strong> Management Styles</a></li><li class="spacer"></li><li class="chapter-item expanded affix "><li class="part-title">Workshops</li><li class="chapter-item expanded "><a href="workshops/secrets-management/index.html"><strong aria-hidden="true">23.</strong> Secrets Management</a></li><li class="spacer"></li><li class="chapter-item expanded affix "><a href="CONTRIBUTING.html">Contributing</a></li><li class="chapter-item expanded affix "><a href="CREDITS.html">Credits</a></li><li class="chapter-item expanded affix "><a href="LICENSE.html">License</a></li></ol>
86+
</div>
87+
<div id="sidebar-resize-handle" class="sidebar-resize-handle"></div>
88+
</nav>
89+
90+
<div id="page-wrapper" class="page-wrapper">
91+
92+
<div class="page">
93+
<div id="menu-bar-hover-placeholder"></div>
94+
<div id="menu-bar" class="menu-bar sticky bordered">
95+
<div class="left-buttons">
96+
<button id="sidebar-toggle" class="icon-button" type="button" title="Toggle Table of Contents" aria-label="Toggle Table of Contents" aria-controls="sidebar">
97+
<i class="fa fa-bars"></i>
98+
</button>
99+
<button id="theme-toggle" class="icon-button" type="button" title="Change theme" aria-label="Change theme" aria-haspopup="true" aria-expanded="false" aria-controls="theme-list">
100+
<i class="fa fa-paint-brush"></i>
101+
</button>
102+
<ul id="theme-list" class="theme-popup" aria-label="Themes" role="menu">
103+
<li role="none"><button role="menuitem" class="theme" id="light">Light</button></li>
104+
<li role="none"><button role="menuitem" class="theme" id="rust">Rust</button></li>
105+
<li role="none"><button role="menuitem" class="theme" id="coal">Coal</button></li>
106+
<li role="none"><button role="menuitem" class="theme" id="navy">Navy</button></li>
107+
<li role="none"><button role="menuitem" class="theme" id="ayu">Ayu</button></li>
108+
</ul>
109+
<button id="search-toggle" class="icon-button" type="button" title="Search. (Shortkey: s)" aria-label="Toggle Searchbar" aria-expanded="false" aria-keyshortcuts="S" aria-controls="searchbar">
110+
<i class="fa fa-search"></i>
111+
</button>
112+
</div>
113+
114+
<h1 class="menu-title">Tech Start UCalgary Documentation</h1>
115+
116+
<div class="right-buttons">
117+
<a href="print.html" title="Print this book" aria-label="Print this book">
118+
<i id="print-button" class="fa fa-print"></i>
119+
</a>
120+
<a href="https://github.com/Tech-Start-UCalgary/docs" title="Git repository" aria-label="Git repository">
121+
<i id="git-repository-button" class="fa fa-github"></i>
122+
</a>
123+
124+
</div>
125+
</div>
126+
127+
<div id="search-wrapper" class="hidden">
128+
<form id="searchbar-outer" class="searchbar-outer">
129+
<input type="search" id="searchbar" name="searchbar" placeholder="Search this book ..." aria-controls="searchresults-outer" aria-describedby="searchresults-header">
130+
</form>
131+
<div id="searchresults-outer" class="searchresults-outer hidden">
132+
<div id="searchresults-header" class="searchresults-header"></div>
133+
<ul id="searchresults">
134+
</ul>
135+
</div>
136+
</div>
137+
138+
<!-- Apply ARIA attributes after the sidebar and the sidebar toggle button are added to the DOM -->
139+
<script>
140+
document.getElementById('sidebar-toggle').setAttribute('aria-expanded', sidebar === 'visible');
141+
document.getElementById('sidebar').setAttribute('aria-hidden', sidebar !== 'visible');
142+
Array.from(document.querySelectorAll('#sidebar a')).forEach(function(link) {
143+
link.setAttribute('tabIndex', sidebar === 'visible' ? 0 : -1);
144+
});
145+
</script>
146+
147+
<div id="content" class="content">
148+
<main>
149+
<h1 id="document-not-found-404"><a class="header" href="#document-not-found-404">Document not found (404)</a></h1>
150+
<p>This URL is invalid, sorry. Please use the navigation bar or search to continue.</p>
151+
152+
</main>
153+
154+
<nav class="nav-wrapper" aria-label="Page navigation">
155+
<!-- Mobile navigation buttons -->
156+
157+
158+
<div style="clear: both"></div>
159+
</nav>
160+
</div>
161+
</div>
162+
163+
<nav class="nav-wide-wrapper" aria-label="Page navigation">
164+
165+
</nav>
166+
167+
</div>
168+
169+
170+
171+
172+
<script>
173+
window.playground_copyable = true;
174+
</script>
175+
176+
177+
<script src="elasticlunr.min.js"></script>
178+
<script src="mark.min.js"></script>
179+
<script src="searcher.js"></script>
180+
181+
<script src="clipboard.min.js"></script>
182+
<script src="highlight.js"></script>
183+
<script src="book.js"></script>
184+
185+
<!-- Custom JS scripts -->
186+
187+
188+
</div>
189+
</body>
190+
</html>

CNAME

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
docs.techstartucalgary.com

0 commit comments

Comments
 (0)