-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
172 lines (105 loc) · 4.39 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
---
title: Andy Davies | Software Developer from Merseyside, UK
layout: master
content_meta: "Andy Davies is a software developer from Wirral, Merseyside in North West UK. This is Andy's website, portfolio and blog."
---
<div class="landing-feature">
<div>
<h1>
<span class="name">Andy Davies </span>
<br>
<span class="job-title">Software Developer</span>
</h1>
</div>
</div>
<section class="featured-work-grid">
<div class="sidebar-selector">
<h2 class="sidebar-selector-heading">Featured Work</h2>
<ul>
<li class="tab active" data-reference="featured-programming">
<h3 class="tab-heading">Programming</h3>
</li>
<li class="tab" data-reference="featured-writing">
<h3 class="tab-heading">Writing</h3>
</li>
</ul>
</div>
<div id="featured-programming" class="featured-grid">
<a href="https://learn.andydavi.es">
<div class="tile">
<div class="tile-info">
<h4 class="tile-title">learn.andydavi.es</h4>
<span class="tile-description">Interactive programming courses</span>
</div>
<img src="images/programmer-500x400.svg" alt="silhouette of a programmer at a desk">
</div>
</a>
{% assign projects = site.projects | sort: 'index_order' %}
{% for project in projects %}
{% if project.featured == true %}
<a href="{{ project.page_url }}">
<div class="tile">
<div class="tile-info">
<h4 class="tile-title">{{ project.short_title }}</h4>
<span class="tile-description">{{ project.description }}</span>
</div>
<img src="{{ project.image_url }}" alt="project image">
</div>
</a>
{% endif %}
{% endfor %}
</div>
<div id="featured-writing" class="featured-grid hidden">
{% for post in site.posts %}
{% if post.featured == true %}
<a href="{{ post.url }}">
<div class="tile">
<div class="tile-info">
<h4 class="tile-description">{{ post.short_title }}</h4>
</div>
<img src="{{ post.featured_image_url }}" alt="blog post image">
</div>
</a>
{% endif %}
{% endfor %}
</div>
</section>
<section class="front-page-blog">
<h2 class="section-title">Latest course</h2>
<article class="featured-post">
<h3 class="featured-post-title">The Fundamentals Of Programming</h3>
<img src="{{ site.baseurl }}/images/programmer.svg" alt="silhouette of a programmer at a desk">
<p>Learn the fundamentals of programming and computer science with my interactive online course, where you can compile and run your code directly in your web browser.</p>
<div class="buttons-wrapper">
<a class="button" href="https://learn.andydavi.es">Learn more</a>
</div>
</article>
</section>
<section class="front-page-about">
<div>
<img src="images/profile-240x240.jpg" alt="Andy Davies">
</div>
<div class="about-me-info">
<h2 class="about-me-heading">About me</h2>
<p>
I'm a software developer from Wirral in the UK. In 2015 I taught myself how to program and got my first job as a software developer. Since then I've worked for small startups and large companies, including Unilever, Very.co.uk and Santander. I can work across the 'stack', whether that's writing Javascript on the front end, Java and Spring Boot on the back end, or provisioning and managing infrastructure in AWS. My main experience is with Java, Javascript and AWS, but I've also worked with C, C#, Python and Azure, and because I have a strong grasp of the fundamentals I can pick up new languages and frameworks in a few days. I've even written <a href="https://learn.andydavi.es">my own course</a> on the fundamentals of programming and computer science. You can get in touch with me <a href="
https://twitter.com/1andydavies1">on Twitter</a>, at [email protected] or by clicking the button below.
</p>
<div class="buttons-wrapper">
<a href="{{ site.baseurl }}{% link contact.md %}" class="button">Contact me</a>
</div>
</div>
</section>
<section class="front-page-blog">
<h2 class="section-title">Latest blog post</h2>
{% for post in site.posts limit:1 %}
<article class="featured-post">
<h3 class="featured-post-title">{{ post.short_title }}</h3>
<img src="{{ site.baseurl }}/{{ post.latest_post_image_url }}" alt="blog post image">
<p>{{ post.excerpt }}</p>
<div class="buttons-wrapper">
<a class="button" href="{{ post.url }}">Read now</a>
</div>
</article>
{% endfor %}
</section>