-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
41 lines (37 loc) · 1.72 KB
/
Copy pathindex.html
File metadata and controls
41 lines (37 loc) · 1.72 KB
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
---
layout: default
title: Home
---
{% assign roblox_projects = site.data.projects | where: "category", "roblox" %}
{% assign bricks_projects = site.data.projects | where: "category", "bricks" %}
<section class="hero">
<div class="wrap">
<p class="eyebrow">Hey 👋</p>
<h1>Stuff I build, all in one place.</h1>
<p>Tools and little projects from two hobbies: Roblox development, and building with LEGO-compatible bricks — BrickLink Studio 2.0, LDraw, and friends. Pick a bin to poke around.</p>
</div>
</section>
<section class="wrap">
<div class="bins">
<a class="bin roblox" href="{{ '/roblox/' | relative_url }}">
<div class="studs"><span></span><span></span><span></span></div>
<h2>Roblox</h2>
<p>Plugins, libraries, and little tools for building in Roblox Studio and with Rojo.</p>
<p class="manifest">{{ roblox_projects | size }} project{% if roblox_projects.size != 1 %}s{% endif %} →</p>
</a>
<a class="bin bricks" href="{{ '/bricks/' | relative_url }}">
<div class="studs"><span></span><span></span><span></span></div>
<h2>Bricks</h2>
<p>Tools for BrickLink Studio 2.0 and LDraw — exporting, converting, and browsing parts.</p>
<p class="manifest">{{ bricks_projects | size }} project{% if bricks_projects.size != 1 %}s{% endif %} →</p>
</a>
</div>
</section>
<section class="elsewhere">
<div class="wrap">
<div class="elsewhere-card">
<h3>Also worth a look</h3>
<p>If you're into building with non-LEGO-compatible bricks, I've got a whole site for that: <a class="link-out" href="{{ site.bricks_site_url }}">{{ site.bricks_site_name }}</a>. It's a different vibe from the general-purpose tools here.</p>
</div>
</div>
</section>