-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
79 lines (64 loc) · 3.17 KB
/
index.html
File metadata and controls
79 lines (64 loc) · 3.17 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
---
layout: default
---
<div class="home">
<div style="text-align:justify;">
<p>Welcome to the online notes of the Code First: Girls course! <br><br>At the moment, you might only see Front-End Course notes - that's because <a href="http://diana.click">I</a> write them! These are meant to be taken as part of the free web development courses across the UK provided by <a href="http://www.codefirstgirls.org.uk" target="_blank">Code First: Girls</a> - <a href="http://www.codefirstgirls.org.uk/courses.html" target="_blank">Sign up!</a></p>
<p></p>
<p>This site is currently a work in progress, and it's incredibly bare - this is just some of my content + the Jekyll backbone hooked up to GitHub Pages & CloudFlare! (aka I'm currently in the middle of second year, and organising things (events, hackathons, classes) and coding things for <a href="http://www.sheplusplus.org/ambassadors/#team" target="_blank">She++</a>, the <a href="http://uclutech.com" target="_blank">UCLU Technology Society</a>, and the <a href="http://uclupole.weebly.com" target="_blank">UCLU Pole Fitness Society</a>, and also coursework and exams... Check back in summer 2016!)
<br>
<br>Check out <a href="http://technight.london" target="_blank">Tech Night LDN</a> and the beautiful minimalistic cross-platform <a href="http://uclutech.com" target="_blank">TechSoc website</a> that I've been working on :)
<br>
<br>Note: Some of the notes need updating to include information on WiFi and the Cloud as part of "How the Web & Internet Work", also we're looking to make them more comprehensive so we can cover more JS and the awesome command line!
<br>
<br>
<a href="http://diana.click">Diana xx</a>
<br>
<em style="font-size:14px;">P.S. If you have any ideas or events you'd like me to get involved with regarding diversity in tech, I'd love to hear them!</em>
</p>
</div>
<hr><br>
<h1 class="page-heading">Beginners</h1>
<ul class="post-list">
{% for beginner in site.beginners %}
<li>
<h2>
<a class="post-link" href="{{ beginner.url | prepend: site.baseurl }}">{{ beginner.title }}</a>
</h2>
{% endfor %}
</li>
</ul>
<h1 class="page-heading">Advanced - Python</h1>
<ul class="post-list">
{% for python in site.python %}
<li>
<h2>
<a class="post-link" href="{{ python.url | prepend: site.baseurl }}">{{ python.title }}</a>
</h2>
{% endfor %}
</li>
</ul>
<h1 class="page-heading">Advanced - Ruby</h1>
<ul class="post-list">
{% for ruby in site.ruby %}
<li>
<h2>
<a class="post-link" href="{{ ruby.url | prepend: site.baseurl }}">{{ ruby.title }}</a>
</h2>
{% endfor %}
</li>
</ul>
<!-- <hr>
<h1 class="page-heading">Posts</h1>
<ul class="post-list">
{% for post in site.posts %}
<li>
<span class="post-meta">{{ post.date | date: "%b %-d, %Y" }}</span>
<h2>
<a class="post-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
</h2>
</li>
{% endfor %}
</ul> -->
<p class="rss-subscribe">subscribe <a href="{{ "/feed.xml" | prepend: site.baseurl }}">via RSS</a></p>
</div>