-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
210 lines (148 loc) · 5.28 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
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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
<!--
This Basic theme serves as an example for how to create other
themes by demonstrating the features with minimal HTML and CSS.
Comments like this will be through the code to explain briefly
what each feature is and point you to the MkDocs documentation
to find out more.
-->
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!--
The page_title contains the title for a page as shown in the navigation.
Site name contains the name as defined in the mkdocs.yml
-->
<title>Home - TeChnicality</title>
<link rel="stylesheet" href="css/theme.css">
<link rel="stylesheet" href="css/pygments.css">
<link rel="icon" href="data:,">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Source+Code+Pro:ital,wght@0,400;0,600;1,400;1,700&family=Noto+Sans:ital,wght@0,400;0,600;1,400;1,600&display=swap" rel="stylesheet">
<script
src="https://code.jquery.com/jquery-3.3.1.slim.min.js"
integrity="sha256-3edrmyuQ0w65f8gfBsqowzjJe2iM6n0nKciPUp8y+7E="
crossorigin="anonymous"></script>
<script src="js/theme.js"></script>
<script>
$(document).ready(function(){
$('table').wrap('<div class="table-wrapper"></div>');
});
</script>
<script src="js/mathjax.js"></script>
<script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script>
<script src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script>
<script src="search/main.js"></script>
</head>
<body>
<header class="header">
<ul>
<li id="logo">
<a href="."><span>TeC</span>hnicality</a>
</li>
<li class="active tab" >
<a href="." class="">
Home
</a>
</li>
<li class="tab" >
<a href="tutorial/overview/">
Tutorial
</a>
</li>
<li class="tab" >
<a href="simulate/overview/">
Simulate
</a>
</li>
<li class="tab" >
<a href="develop/overview/">
Develop
</a>
</li>
<li class="tools">
<a id="nav-toggle" class="tool lonely" onclick="nav_toggle()">
<svg><use xlink:href="svg/sprite.svg#menu-2"></use></svg>
</a>
<script>
function nav_toggle() {
var bar = document.getElementById("tab-bar");
if (bar.style.display === "none") {
bar.style.display = "block";
} else {
bar.style.display = "none";
}
}
function nav_reset() {
var bar = document.getElementById("tab-bar");
if (window.innerWidth>950){
bar.style.display = "block";
} else {
bar.style.display = "none";
}
}
window.onresize = nav_reset;
</script>
<a class="tool" href="https://github.com/teoroo-cmc/technicality-private/">
<svg><use xlink:href="svg/sprite.svg#brand-github"></use></svg>
<span>teoroo-cmc/technicality-private</span>
</a>
</li>
</ul>
</header>
<div id="main">
<div id="tab-bar">
<ul>
<li class="active tab" >
<a href="." class="">
Home
</a>
</li>
<li class="tab" >
<a href="tutorial/overview/">
Tutorial
</a>
</li>
<li class="tab" >
<a href="simulate/overview/">
Simulate
</a>
</li>
<li class="tab" >
<a href="develop/overview/">
Develop
</a>
</li>
</ul>
</div>
<div id="content">
<h1 id="technical-notes-by-the-tec-group">Technical Notes by the TeC Group</h1>
<p>This website is the shared documentation page made and maintained by the <a href="https://tec-group.github.io/">TeC
Group</a>. The group works on "The physical chemistry of ionically conducting
solutions" and "The physical chemistry of electrically charged interfaces" for
energy storage applications.</p>
<p>This site contains notes covering tutorials and manuals for running computer
simulations and developing tools thereof. It is intended as a knowledge base for
technical problems common in those simulations. The site also serve as a
practice repo for the group members to collaborate on a project using Git and
GitHub.</p>
<p>The source files for this repo are currently open to members of the TeC group
only, and copyright reserved by the TeC Group. If you are a group member, you
are welcome to contribute to this website, following the instructions in
<a href="./tutorial/this_site/overview/">How-to/Edit this site</a>.</p>
</div>
</div>
<div class="page">
<div class="page-prev">
</div>
<div class="page-next">
<a href="tutorial/overview/" title="Overview" />Next <span>»</span></a>
</div>
</div>
<div class="footer">
Built with <a href="https://www.mkdocs.org">mkdocs</a> and the <a href="https://github.com/yqshao/mkdocs-flux-theme">flux</a> theme.
</div>
</body>
</html>