-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconor.html
75 lines (65 loc) · 1.84 KB
/
conor.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
---
layout: default
---
<!--Profile photo -->
<div>
<ul class="ppics">
<li>
<a href="sohil.html">
<img src="https://avatars0.githubusercontent.com/u/12072531?v=3&s=460" alt="Conor Campbell">
<h5>Conor Campbell</h5>
</a>
</li>
</ul>
</div>
<!--User Information and social icons -->
<div class="pwrapper">
<a class="organisation" href="fcscripters.github.io">
<p>FC Scripters</p>
</a>
<p class="location"> London, UK</p>
<p class="profilephoto"> Hopefull JS developer, currently in cohort 6 of Founders & Coders</p>
<div class="social">
<ul class="social1">
<li>
<a href="https://twitter.com/conorc1000">
<img src="assets/twitter.png" alt="twitter" /> </a>
</li>
<li>
<a href="https://github.com/Conorc1000">
<img src="assets/github.png" alt="github" /> </a>
</li>
<li>
<a href="https://uk.linkedin.com/pub/conor-campbell/61/ab0/357">
<img src="assets/linkedin.png" alt="linkdin" />
</a>
</li>
<li>
<a href="http://http://www.codewars.com/users/Conorc1000">
<img src="assets/yelp.png" alt="codewars" />
</a>
</li>
</ul>
</div>
</div>
</div>
<!--Contains the blogs from the spefic user only. -->
<div class="bwrapper">
<div class="pwrapper">
<h2>Conor's Blog</h2>
<ul class="post-link">
{% for post in site.categories.conor %}
<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 }} <img class="thumbphoto" src="https://avatars0.githubusercontent.com/u/12072531?v=3&s=460" alt="####" />
</a>
</h2>
<p>
{{post.excerpt}}
</p>
</li>
{% endfor %}
</ul>
</div>
</div>