Skip to content

Commit b3bd8b1

Browse files
Adding useful links to the resources page
1 parent b518701 commit b3bd8b1

File tree

3 files changed

+90
-1
lines changed

3 files changed

+90
-1
lines changed

css/style.css

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
--colour-light-highlight: #adffd2;
1111
--colour-black: #000000;
1212
--colour-white: #f8f8f8;
13+
--color-link: #A52A2A;
1314
}
1415

1516
/* Links */
@@ -18,7 +19,7 @@ a:focus,
1819
a:hover {
1920
text-decoration: solid underline;
2021
/* color: var(--colour-light-primary); */
21-
color: brown;
22+
color: var(--color-link);
2223
}
2324

2425
a, a:focus {
@@ -225,6 +226,7 @@ iframe {
225226
padding: 30px;
226227
}
227228

229+
228230
/* Activity and resource cards */
229231

230232
.card {
@@ -387,6 +389,21 @@ div.event-book-button {
387389
width: 7.5em;
388390
}
389391

392+
/*Resources*/
393+
.color-slack{
394+
color:var(--colour-light-primary);
395+
}
396+
397+
.color-github{
398+
color:var(--colour-black);
399+
}
400+
401+
.color-slides{
402+
color:var(--colour-light-primary);
403+
}
404+
405+
406+
390407
/* Twitter */
391408

392409
#twitterButton i {
Lines changed: 71 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
1+
<div class="row">
2+
<div class="col-md-12">
3+
<a name="resources-ides"></a>
4+
<h2>
5+
Useful Links
6+
</h2>
7+
</div>
8+
</div>
9+
<div class="row">
10+
<div class="col-2 resource-box">
11+
<div class="text-center resource-icon">
12+
<a class="color-github" href="https://github.com/CodeWithGroup/" target="_blank">
13+
<span class="fab fa-4x fa-github"></span>
14+
</a>
15+
</div>
16+
</div>
17+
<div class="col-10 resource-description">
18+
<h4>
19+
<a href="https://github.com/CodeWithGroup/" target="_blank">GitHub</a>
20+
</h4>
21+
<p>
22+
Git is industry-leading version control software and is incredibly popular with professionals and hobbyists
23+
alike. CodeWith has a public GitHub repository where we encourage you to store any public projects you work
24+
on at
25+
CodeUp. We even run this web site direct from our GitHub repository.
26+
</p>
27+
28+
</div>
29+
</div>
30+
<div class="row">
31+
<div class="col-md-2 resource-box">
32+
<div class="text-center resource-icon">
33+
<a class="color-slack"
34+
href="https://join.slack.com/t/codeupmanchester/shared_invite/enQtMzI4OTYyOTg1NTU1LTAxODBiMzg1YjMxMzhjYmRlN2VjMmE1YTIwYmI2ZDQxZmZhODlhZTVlZWU4OTY3YTU0ZDE2YjQzNDgyMjRiYTU"
35+
target="_blank">
36+
<span class="fab fa-4x fa-slack"></span>
37+
</a>
38+
</div>
39+
</div>
40+
<div class="col-md-10 resource-description">
41+
<h4>
42+
<a href="https://launchpass.com/codewithpeople" target="_blank">Slack</a>
43+
</h4>
44+
<p>
45+
CodeWith has a Slack workspace where you can chat, share files, ask questions and get help with problems in
46+
between Meetups. Follow the link to get an invitation.
47+
</p>
48+
</div>
49+
</div>
50+
<div class="row">
51+
<div class="col-md-2 resource-box">
52+
<div class="text-center resource-icon">
53+
<a class="color-slides"
54+
href="https://join.slack.com/t/codeupmanchester/shared_invite/enQtMzI4OTYyOTg1NTU1LTAxODBiMzg1YjMxMzhjYmRlN2VjMmE1YTIwYmI2ZDQxZmZhODlhZTVlZWU4OTY3YTU0ZDE2YjQzNDgyMjRiYTU"
55+
target="_blank">
56+
<span class="fas fa-4x fab fa-chalkboard"></span>
57+
</a>
58+
</div>
59+
</div>
60+
<div class="col-md-10 resource-description">
61+
<h4>
62+
<a href="https://drive.google.com/drive/u/3/folders/1j6irw_cUfU_u2P1LLe_tJiM6T4dBID5Q"
63+
target="_blank">Workshop Presentations</a>
64+
</h4>
65+
<p>
66+
If you've attended a CodeWith workshop and the host has shared their slides you can find them in the folder
67+
linked above. If a you attended a workshop and would like the slides but they are not in the folder, you can
68+
get in touch with us on the <a href=/contact.html>contact page</a>.
69+
</p>
70+
</div>
71+
</div>

resources.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ <h1>{{page.title}}</h1>
1818
Jump to: <a href="#resources-ides">Integrated Development Environments (IDEs)</a> | <a href="#resources-tools">Other
1919
Tools</a>
2020
</p>
21+
{% include_relative pages-resources/resources-links.html %}
2122

2223
{% include_relative pages-resources/resources-ideas.html %}
2324
{% include back-to-top.html %}

0 commit comments

Comments
 (0)