forked from PortoLabsOrg/portolabsorg.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (29 loc) · 889 Bytes
/
Copy pathindex.html
File metadata and controls
33 lines (29 loc) · 889 Bytes
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
---
layout: home
title: PortoLabs – Responsible AI, Locally Run
---
<section class="intro">
<div class="container">
<p>At PortoLabs, we develop AI you can run and trust. Our focus is on responsible, self-hosted solutions that keep data sovereign and projects fully in your control — whether you're an independent organization or an AI enthusiast.</p>
</div>
</section>
<section id="projects">
<div class="container">
<h2>Featured Projects</h2>
<div class="grid">
{% for project in site.data.projects limit:3 %}
{% include project-card.html project=project %}
{% endfor %}
</div>
</div>
</section>
<section id="latest">
<div class="container">
<h2>Latest Articles</h2>
<div class="grid">
{% for post in site.posts limit:3 %}
{% include post-card.html post=post %}
{% endfor %}
</div>
</div>
</section>