-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
63 lines (61 loc) · 3.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
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
---
title: Home page
---
<div class="container my-3">
<h3>About us</h3>
<hr>
<p>OniroAI is an independent team of passionate professionals and enthusiasts of applied
Computer Vision and Artificial Intelligence. We are a union of friends inspired by the
technologies of the future. Our collaboration is aimed at shaping the AI revolution through
conducting research, contributing to open source and spreading knowledge.</p>
<p>The core of our team is formed by a natural curiosity in combination with a fundamental
interdisciplinary education. This gives us the inspiration to implement state-of-the-art
machine learning pipelines and push the boundaries of applied Artificial Intelligence.</p>
</div>
<div class="container my-3">
<h3>Projects</h3>
<hr>
<div class="row justify-content-center small">
{% for project in site.projects %}
{% assign n_cols_is_odd = site.projects.size | modulo:2 %}
{% if n_cols_is_odd == 1 %}
<div class="col-lg-4 col-md-6 my-2 text-center">
{% else %}
<div class="col-md-6 my-2 text-center">
{% endif %}
<a href="{{ project.url }}" class="text-body text-decoration-none"
{% if project.github %}github="{{ project.github }}" {% endif %}>
<img src="assets/images/{{ project.thumbnail }}" class="avatar rounded-circle">
<h5 class="my-2">{{ project.title }}</h4>
<p class="mt-2 mb-0">{{ project.short_description }}</p>
</a>
{% if project.github %}
<a href="https://github.com/{{ project.github }}/stargazers"
class="btn btn-light"><i class="fas fa-star"></i></a>
<a href="https://github.com/{{ project.github }}/network"
class="btn btn-light"><i class="fas fa-code-branch"></i></a>
{% endif %}
</div>
{% endfor %}
</div>
</div>
<div class="container my-3">
<h3>Team</h3>
<hr>
<div class="row justify-content-center text-center">
{% for member in site.team %}
<div class="col-md-4 col-sm-6 my-2">
<a href="/team.html#{{ member.short_name }}" class="text-body text-decoration-none">
<img src="assets/images/{{ member.avatar }}" class="avatar rounded-circle">
<p class="mt-2 mb-0">{{ member.full_name }}</p>
</a>
{% if member.github %}<a href="{{ member.github }}" class="fab fa-github btn btn-light"></a>{% endif %}
{% if member.kaggle %}<a href="{{ member.kaggle }}" class="fab fa-kaggle btn btn-light"></a>{% endif %}
{% if member.linkedin %}<a href="{{ member.linkedin }}" class="fab fa-linkedin btn btn-light"></a>{% endif %}
</div>
{% endfor %}
</div>
</div>
<script src="https://code.jquery.com/jquery-3.4.1.min.js"
integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo=" crossorigin="anonymous"></script>
<script src="/assets/js/get_github_repo_stats.js"></script>