-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.njk
42 lines (38 loc) · 1.65 KB
/
index.njk
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
---
layout: layouts/home.njk
eleventyNavigation:
key: Home
order: 1
---
<div class="container jumbotron main-text">
<h1>Hello There!</h1>
<p>Welcome to my blog.</p>
This blog is used to document my completed and ongoing projects.
<hr class="my-4"></hr>
<p>If you would like to visit my online web developers profile, please click the button below.</p>
<a class="btn btn-lg btnGit" href="https://calgrimes1.github.io/calgrimes/" role="button">Return To Profile</a>
</div>
<div class="container main-text">
<br>
<div class="row">
<div class="col-md">
<h4>Hi, I'm Cal Grimes...</h4>
<p>I am a student Software Enigneer studying at Liverpool John Moores University.</p>
<p>This blog is a project that I have coded during my JAMstack bootcamp. The content is product of the tasks I have completed throughout the course, Technologies used on this course are: <b>HTML, CSS, JavaScript, CMS, Bootstrap, Eleventy, Nunjucks and Markdown.</b>
</p>
<p>
I will also be documenting other work and projects that I am doing on the blog archive page.
</p>
You are welcome to visit my GitHub profile <a href="https://github.com/CalGrimes1"><b>HERE</b></a>
</div>
<div class="col-md">
{% set maxPosts = collections.posts.length | min(3) %}
<h1>Latest {% if maxPosts == 1 %}Post{% else %}{{ maxPosts }} Posts{% endif %}</h1>
{% set postslist = collections.posts | head(-6) %}
{% set postslistCounter = collections.posts | length %}
{% include "postslist.njk" %}
<p>More posts can be found in <b><a href="{{ '/posts/' | url }}">the archive</a></b>.</p>
</div>
</div>
<br>
</div>