-
Notifications
You must be signed in to change notification settings - Fork 1
/
sohil.html
83 lines (68 loc) · 2.27 KB
/
sohil.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
---
layout: default
---
<!--Profile photo -->
<div>
<ul class="ppics">
<li>
<a href="sohil.html">
<img src="https://avatars3.githubusercontent.com/u/2305591?v=3&s=460" alt="Sohil Pandya">
<h5> Sohil Pandya</h5>
</a>
</li>
</ul>
</div>
<!--User Information and social icons -->
<div class="pwrapper">
<a href="fcscripters.github.io" class="organisation">
<p>FC Scripters</p>
</a>
<p class="location"> London, UK</p>
<p class="profileinfo">
<strong> Hello Internet, my name is Sohil Pandya and I am currently partaking in a 16 week long programming course, at Founders & Coders. I will hope to write at least one blog post a week about a topic which myself and my team found difficult to grasp. I
hope you enjoy reading these, and can take something away from them. If you find them to be too short, too long, terribly written or want to contribute, I would love the feedback. Oh and please follow me on Twitter for some awesome programming hacks
and cute cat photos! </strong>
</p>
<div class="social">
<ul class="social1">
<li>
<a href="https://twitter.com/Sohil_is">
<img src="assets/twitter.png" alt="twitter" /> </a>
</li>
<li>
<a href="https://github.com/sohilpandya">
<img src="assets/github.png" alt="github" /> </a>
</li>
<li>
<a href="###">
<img src="assets/linkedin.png" alt="linkdin" />
</a>
</li>
<li>
<a href="http://www.codewars.com/users/sohilpandya">
<img src="assets/yelp.png" alt="codewars" />
</a>
</li>
</ul>
</div>
</div>
<!--Contains the blogs from the spefic user only. -->
<div class="bwrapper">
<div class="pwrapper">
<h2>Sohil's Blog</h2>
<ul class="post-link">
{% for post in site.categories.sohil %}
<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://avatars3.githubusercontent.com/u/2305591?v=3&s=460" alt="####" />
</a>
</h2>
<p>
{{post.excerpt}}
</p>
</li>
{% endfor %}
</ul>
</div>
</div>