-
Notifications
You must be signed in to change notification settings - Fork 1
/
freelance.html
170 lines (164 loc) · 5.8 KB
/
freelance.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
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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
<!doctype html>
<html lang="fr">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<title>Freelance</title>
</head>
<body>
<div class="container">
<div class="row">
<div class="col">
<h1>Ma liste de sites pour Freelance</h1>
</div>
</div>
<div class="row">
<div class="col">
<ul class="list-group" id="js-add-websites">
<!-- Fill in by JavaScript -->
</ul>
</div>
</div>
<div class="row">
<div class="col">
© 2019 Joël Gaujard
</div>
</div>
</div>
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
<script type="text/javascript">
let websites = [
{
name: "5 euros",
url: "https://5euros.com"
},
{
name: "Crème de la crème",
url: "https://cremedelacreme.io",
rating: 8,
description: "Inscription faite le Mercredi 11 Septembre"
},
{
name: "Carriere-info",
url: "https://www.carriere-info.fr"
},
{
name: "Club freelance",
url: "https://www.club-freelance.com/",
rating: 7,
description: "Démarchage par email, site un peu buggé"
},
{
name: "Freelance informatique",
url: "https://www.freelance-informatique.fr/"
},
{
name: "Freelance-info",
url: "https://www.freelance-info.fr/",
rating: 7,
description: "Même site que carriere-info"
},
{
name: "Freelance Republik",
url: "https://www.freelancerepublik.com"
},
{
name: "humaniance",
url: "http://www.humaniance.com/",
rating: 3,
description: "Moins spécialisé dans l'informatique"
},
{
name: "indeed",
url: "https://www.indeed.fr/Emplois-Freelance-php"
},
{
name: "Le Hibou",
url: "https://www.lehibou.com"
},
{
name: "LesJeudis",
url: "https://www.lesjeudis.com/contrat/indépendant"
},
{
name: "LinkedIn",
url: "https://www.linkedin.com/jobs/search/?keywords=freelance"
},
{
name: "Malt",
url: "https://www.malt.fr"
},
{
name: "Monster",
url: "https://www.monster.fr/emploi/q-emploi-freelance-informatique.aspx"
},
{
name: "ProgOnline",
url: "https://www.progonline.com/",
rating: 5,
description: "Les prix sont bas et les porteurs ne répondent pas."
},
{
name: "Skill Value",
url: "https://skillvalue.com/jobs/fr/search/?_skl_contract_type=freelancing&_skl_status=activ"
},
{
name: "Skill wise",
url: "http://www.skillwise.fr/",
rating: 6,
description: "Pas beaucoup de missions proposées"
},
{
name: "Tous-Freelance",
url: "https://www.tous-freelance.com"
},
{
name: "UpWork",
url: "https://www.upwork.com"
},
{
name: "Yoss",
url: "https://www.yoss.com"
},
{
name: "XXE",
url: "https://freelances.xxe.fr"
}
];
let ul = $('ul#js-add-websites');
websites.forEach(function(website, index) {
let li = $('<li/>')
.addClass('list-group-item d-flex justify-content-between align-items-center')
.appendTo(ul);
;
let a = $('<a/>')
.attr('target', 'blank')
.attr('href', website.url)
.text(website.name)
.appendTo(li)
;
if (undefined !== website.description) {
let p = $('<p/>')
.addClass('mb-1')
.text(website.description)
.appendTo(li)
;
}
if (undefined !== website.rating) {
let p = $('<span/>')
.addClass('badge badge-primary badge-pill')
.text(website.rating)
.appendTo(li)
;
}
});
</script>
</body>
</html>