forked from TryEnlight/tryenlight.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
28 lines (23 loc) · 1.02 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
---
layout: default
title: Enlight
description: Enlight is a resource aimed to teach anyone to code through building projects. Hosting a wide variety of tutorials and demos, Enlight provides developers with sample projects and explains how they work.
---
{% include tagline.html %}
<script>
alert("Visit our new site! https://enlight.nyc")
</script>
<section class="cf w-100 pa2-ns" id="projects">
{% for post in site.posts %}
<article class="fl w-100 w-50-m w-25-ns pa1-ns card">
<a href="{{ post.url | prepend: site.baseurl }}" class="ph2 ph0-ns pb3 link db">
<div class="aspect-ratio aspect-ratio--1x1">
<img style="background-image:url({{post.img}});"
class="db bg-center contain aspect-ratio--object card" />
</div>
<h3 class="f5 f4-ns mb0 black-90">{{ post.title | replace: 'Build an', '' | replace: 'Build a', '' | replace: 'Build your own', ''}} </h3>
<h3 class="f6 f5 fw4 mt2 black-60">{{ post.language }} | <u>{{ post.difficulty }}</u></h3>
</a>
</article>
{% endfor %}
</section>