-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
executable file
·139 lines (114 loc) · 3.12 KB
/
index.php
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
<!DOCTYPE html>
<html lang="fr">
<?php
//meta tags
$actual_link = (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] === 'on' ? "https" : "http") . "://$_SERVER[HTTP_HOST]$_SERVER[REQUEST_URI]";
$canonical = $actual_link;
//Facebook meta tags
$ogg_site = 'ShexWeeknd | Portfolio';
$ogg_title = 'ShexWeeknd | Portfolio';
$ogg_url = $actual_link;
//$ogg_website = '';
$ogg_type = 'website';
$ogg_description = 'Consultez le site Portfolio de ShexWeeknd (aka hramaros). Un informaticien polyvalent | Éternel étudiant de la Tech a l\'École 42 Antananarivo.';
$ogg_image = 'assets/img/logo192.png';
$ogg_image_width = '288';
$ogg_image_height = '44';
//other meta
$meta_name = 'ShexWeeknd | Portfolio';
$meta_url = $actual_link;
$meta_description = 'Consultez le site Portfolio de ShexWeeknd (aka hramaros). Un informaticien polyvalent | Éternel étudiant de la Tech a l\'École 42 Antananarivo.';
$meta_thumbnailUrl = 'assets/img/logo192.png';
//twitter meta
$meta_twitter_title = 'ShexWeeknd | Portfolio';
$meta_twitter_image = 'assets/img/logo192.png';
$meta_twitter_url = $actual_link;
$meta_twitter_card = 'summary';
$meta_twitter_description = $meta_description;
include_once 'elements/header.php';
?>
<?php
include_once 'elements/cvDialog.php';
include_once 'elements/acceuil.php';
include_once 'elements/profil.php';
include_once 'elements/compDev.php';
include_once 'elements/compSys.php';
// include_once 'elements/portfolio.php';
include_once 'elements/contact.php';
include_once 'elements/footer.php';
?>
</body>
</html>
<script>
AOS.init({
duration: 1500,
});
</script>
<style>
/* responsive */
@media screen and (max-width: 980px) {
p, input[type="text"], span, a {
font-size: 0.8rem;
}
.acceuil .image-container {
right: 0;
}
.acceuil .gauche {
transform: translate(-100%, 10%);
}
.acceuil .paragraph-light {
min-width: 60vw;
}
.acceuil .styled-link {
display: none;
}
.profil .wrap:hover .overlay {
transform: translateX(-150vw);
}
.profil .text {
width: 100%;
padding: 1rem 1rem;
}
.profil .wrap {
border: unset;
border-radius: 0px;
}
.compdev .competences .intro {
display: none;
}
.compdev .competences .competences-content {
display: none;
}
.compdev .cv .button-container {
margin-top: 150%;
}
.compdev .cv .cv-image {
width: 100%;
transform: translate(-20%, 0%);
}
.compsys .competences .intro {
display: none;
}
.compsys .competences .competences-content {
display: none;
}
.compsys .cv .button-container {
margin-top: 150%;
}
.compsys .cv .cv-image {
/* width: 60%; */
width: 100%;
transform: translate(-20%, 0%);
}
.contact {
margin-top: 0;
}
.footer .footer-content {
scale: 0.5;
position: relative;
transform: translate(0%, 0%);
left: 0;
top: 0
}
}
</style>