forked from xriley/Developer-Theme
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
148 lines (135 loc) · 7.61 KB
/
index.html
File metadata and controls
148 lines (135 loc) · 7.61 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
---
layout: default
title: Icreated Developer
shortName: Icreated Developer
---
<section class="about section">
<div class="section-inner shadow-sm rounded">
<h2 class="heading">A propos de moi</h2>
<div class="content">
<p>
{% capture about_me %} {% include about-me.md %} {% endcapture %}
{{ about_me | markdownify }}
</p>
</div><!--//content-->
</div><!--//section-inner-->
</section><!--//section-->
<section class="experience section">
<div class="section-inner shadow-sm rounded">
<h2 class="heading">Experience Freelance</h2>
<div class="content">
{% assign experiences = site.experiences | where: 'status', 'published' | sort: 'order' | reverse %}
{% for experience in experiences %}
<div class="item">
<h3 class="title">{{ experience.title }} - <span class="place"><a href="{{ experience.link }}">{{ experience.company }}</a></span> <span class="year">({{ experience.dates }})</span></h3>
{{ experience.content }}
{% for skill in experience.skills %}
<span class="tag">{{ skill }}</a></span>
{% endfor %}
</div><!--//item-->
{% endfor %}
</div><!--//content-->
</div><!--//section-inner-->
</section><!--//section-->
<section class="projects section">
<div class="section-inner shadow-sm rounded">
<h2 class="heading" id="Certification">Certifications</h2>
<div class="content">
{% capture certif %} {% include certifications.md %} {% endcapture %}
{{ certif | markdownify }}
{% assign certifications = site.certifications | where: 'status', 'published' | sort: 'order' %}
{% for certification in certifications %}
<div class="item row">
<a class="col-md-4 col-12" href="{{ certification.certificationUrl}}" target="_blank">
<img class="img-fluid project-image rounded shadow-sm" src="{{ certification.badgeUrl}}" alt="Badge {{ certification.title }}" height="156px"/>
</a>
<div class="desc col-md-8 col-12">
<h3 class="title"><a href="{{ certification.certificationUrl}}" target="_blank">
{{ certification.title }}
</a></h3>
<p class="mb-2">
{{ certification.description | markdownify }}
</p>
{% if certification.content.size > 1 %}
<p><a class="more-link" href="{{site.url | append: certification.url }}">
<i class="fas fa-external-link-alt"></i>
En savoir plus
</a>
</p>
{% endif %}
</div><!--//desc-->
</div><!--//item-->
{% endfor %}
<a class="btn btn-cta-secondary" href="{{ site.icreated.links.credly.url }}">En savoir plus sur {{ site.icreated.links.credly.title }} <i class="fas fa-chevron-right pt-1"></i></a>
</div><!--//content-->
</div><!--//section-inner-->
</section><!--//section-->
<section class="latest section">
<div class="section-inner shadow-sm rounded">
<h2 class="heading" id="Projet">Mes Projects</h2>
<div class="content">
{% assign featured_projects = site.projects | where: 'status', 'featured' %}
{% if featured_projects.size > 0 %}
{% for project in featured_projects %}
<div class="item featured text-center">
<div class="featured-image has-ribbon">
{% if project.link %}
<a href="{{ project.link }}" target="_blank">
<img class="img-fluid project-image rounded shadow-sm" src="{{ project.imageUrl }}" alt="{{ project.title }}" />
</a>
{% else %}
<img class="img-fluid project-image rounded shadow-sm" src="{{ project.imageUrl }}" alt="{{ project.title }}" />
{% endif %}
<div class="ribbon">
<div class="text">Nouveau</div>
</div>
</div>
<h3 class="title mb-3">
{% if project.link %}
<a href="{{ project.link }}" target="_blank">{{ project.title }}</a>
{% else %}
{{ project.title }}
{% endif %}
</h3>
<div class="desc text-start">
{{ project.description }}
</div><!--//desc-->
{% if project.content.size > 1 %}
<a class="btn btn-cta-secondary" href="{{site.url | append: project.url }}"><i class="fas fa-thumbs-up"></i>En savoir plus</a>
{% endif %}
</div><!--//item-->
<hr class="divider" />
{% endfor %}
{% endif %}
{% assign projects = site.projects | where: 'status', 'published' %}
{% if projects.size > 0 %}
{% for project in projects %}
<div class="item row">
{% if project.link %}
<a class="col-md-4 col-12" href="{{ project.link }}" target="_blank">
<img class="img-fluid project-image rounded shadow-sm" src="{{ project.imageUrl }}" alt="{{ project.title }}" />
</a>
{% else %}
<div class="col-md-4 col-12">
<img class="img-fluid project-image rounded shadow-sm" src="{{ project.imageUrl }}" alt="{{ project.title }}" />
</div>
{% endif %}
<div class="desc col-md-8 col-12">
<h3 class="title">
{% if project.link %}
<a href="{{ project.link }}" target="_blank">{{ project.title }}</a>
{% else %}
{{ project.title }}
{% endif %}
</h3>
<p class="mb-2">{{ project.description }}</p>
{% if project.content.size > 1 %}
<p><a class="more-link" href="{{ site.url | append: project.url }}"><i class="fas fa-external-link-alt"></i>En savoir plus</a></p>
{% endif %}
</div><!--//desc-->
</div><!--//item-->
{% endfor %}
{% endif %}
</div><!--//content-->
</div><!--//section-inner-->
</section><!--//section-->