-
Notifications
You must be signed in to change notification settings - Fork 139
/
companies.html
68 lines (59 loc) · 1.94 KB
/
companies.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
---
layout: default
title: Companies using Scrapy
permalink: companies/
redirect_from:
- support/
---
{% assign companies = site.data.companies.list %}
{% assign ranking = site.data.companies.pros.ranking %}
{% assign users = site.data.companies.users %}
<div class="container">
<h1>Meet the Scrapy pros</h1>
<p>The following companies offer support contracts and consultancy services for Scrapy, and can also develop bespoke crawlers to meet your needs:</p>
<div class="companies-container">
{% for r in ranking %}
{% assign company = companies[r.company] %}
<div class="company-longbox">
<div class="logo-wrap">
<a href="{{ company.url }}">
<img src="../img/{{ company.logo }}" />
</a>
</div>
{{ company.description | markdownify }}
</div>
{% endfor %}
</div>
<h1>Companies using Scrapy</h1>
<p>Check who is using Scrapy to do business and make an impact on the world.
<br />
(<span class="highlight">Should you be on this list?</span>
Fork <a href="https://github.com/scrapy/scrapy.org">this GitHub repo</a>,
add yourself, and send a pull request!)</p>
<div class="companies-container">
{% for u in users %}
{% assign company = companies[u] %}
<div class="company-box">
<a href="{{ company.homepage }}">
<img src="../img/{{ company.logouser }}" />
</a>
<hr />
<p>
{{ company.usage | markdownify }}
</div>
{% endfor %}
</div>
</div>
<div class='fourth-row'>
<div class="container">
<div class="block-left">
<p><span class="big-font">Want to be part of this list?</span></p>
<p>Fork <a href="https://github.com/scrapy/scrapy.org">this GitHub repo</a>,
add yourself, and send a pull request!</p>
</div>
<div class="block-right">
<p><span class="big-font">Be a part of the Community</span></p>
<p><a href="../community/">Join our channels and collaborate!</a></p>
</div>
</div>
</div>