-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
70 lines (70 loc) · 2.85 KB
/
index.html
File metadata and controls
70 lines (70 loc) · 2.85 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
---
title: R&D Toolchain Labs
subtitle: We are a team of experts that create next-gen tools for software development, bringing the latest research achievements to production. Our mission is to enhance developers productivity and efficiency, product quality and security with cutting-edge solutions. We leverage the latest technologies and methodologies to drive industry evolution.
---
<div class="content">
<header class="titleBlock">
<div class="logoRow">
<img class="logoImg" src="{{ "/assets/images/logo.png" | relative_url }}"/>
<img class="titleLogo" src="{{ "/assets/images/logo-title.png" | relative_url }}"/>
</div>
<p class="subtitle">{{ page.subtitle }}</p>
</header>
<div class="overviewBlock">
<div class="projectsRow">
{% for project in site.projects %}
<a href="{{ project.url | relative_url }}" class="projectCard">
<p class="cardTitle">{{ project.title }}</p>
<div {% if project.category ==
'productivity' %}class="label orange"{% endif %}
{% if project.category == 'quality' %}class="label green"{% endif %} >
{{project.category}}
</div>
<p class="cardDescription">{{ project.description }}</p>
<div class="tagsContainer">
{% for tag in project.tags %}
<p class="tag">#{{tag}}</p>
{% endfor %}
</div>
</a>
{% endfor %}
</div>
</div>
<div class="microProjectsContainer">
<div class="microProjectTitleBlock">
<div class="line"></div>
<div class="title">Micro R&D Projects</div>
<div class="line transform180"></div>
</div>
{% for project in site.microProjects %}
<div class="microProjectBlock">
<div class="microProjectTitle">{{project.title}}</div>
<div class="row">
{% for tag in project.tags %}
<p class="tag">#{{tag}}</p>
{% endfor %}
</div>
<div class="microProjectContent">
<details>
<summary>{{project.summary}}</summary>
{{project.content}}
</details>
{%if project.github %}
<a href={{project.github}}>
<img src="{{ "/assets/images/github_icon.png" | relative_url }}"/>
</a>
{% endif %}
{%if project.presentation %}
<a href={{project.presentation | relative_url}}>
<img src="{{ "/assets/images/pdf.png" | relative_url }}"/>
</a>
{% endif %}
{%if project.website %}
<a href={{project.website}}>
<img src="{{ "/assets/images/home.png" | relative_url }}"/>
</a>
{% endif %}
</div>
</div>
{% endfor %}
</div>