-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathindex.html
More file actions
138 lines (133 loc) · 4.85 KB
/
Copy pathindex.html
File metadata and controls
138 lines (133 loc) · 4.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
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
---
layout: null
---
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="generated" content="{{ site.time }}">
<title>Avast open source</title>
<link rel="stylesheet" href="css/bootstrap.min.css"> <!-- custom build, grid only -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/octicons/4.4.0/font/octicons.min.css">
<!-- Favicon -->
<link rel="icon" type="image/png" href="img/i/favicon-32x32.png" sizes="32x32" />
<link rel="icon" type="image/png" href="img/i/favicon-16x16.png" sizes="16x16" />
<!-- Apple Touch Icon -->
<link rel="apple-touch-icon" href="img/i/apple-touch-icon-57x57.png" />
<link rel="apple-touch-icon" sizes="76x76" href="img/i/apple-touch-icon-76x76.png" />
<link rel="apple-touch-icon" sizes="120x120" href="img/i/apple-touch-icon-120x120.png" />
<link rel="apple-touch-icon" sizes="152x152" href="img/i/apple-touch-icon-152x152.png" />
<style>
#masthead {
background-image: url('img/bg.jpg');
background-size: cover;
background-position: 50% 0;
background-repeat: no-repeat;
padding: 5em 0 5em 0;
margin-bottom: 3em;
text-align: center;
color: white;
}
#masthead a:hover { color: white; }
h1 { text-shadow: 0 1px 1px rgba(0,0,0,0.5); }
#logo {
position: absolute;
left: 50px;
top: 30px;
width: 110px;
height: auto;
}
.intro {
font-size: 130%;
}
body {
font-size: 160%;
padding: 0;
margin: 0;
}
.repository {
margin-bottom: 0.7em;
}
.category {
margin-bottom: 1em;
}
h4 { margin: 0; }
h2 { margin: 0.5em 0 0.5em 0; }
.repository h4 {
margin-bottom: 0.1em;
font-size: 130%;
}
.desc { margin-top: 0.2em; }
.stats div {
display: inline;
margin-right: 1em;
}
a {
color: white;
}
a.repository {
color: black;
text-decoration: none;
}
a:hover h4 {
text-decoration: underline;
}
</style>
</head>
<body>
<div id="masthead">
<a href="https://www.avast.com" title="avast.com">
<img src="img/avast-software.png" id="logo">
</a>
<div class="container">
<h1>Avast open source</h1>
<div class="intro">
We, Avast developers, love open source and are actively trying to give back to the community by
releasing some of the tools we build. We also warmly welcome any contributions.
</div>
<div class="intro">
Below you'll find a selection of useful libraries and tools developed by Avast teams.
A complete list of repositories can be found on our <a href="https://github.com/avast">GitHub page</a>.
</div>
</div>
</div>
<div class="container">
<div class="category row">
<div class="col-xs-12">
<h2>Decompilers & static analysis tools</h2>
</div>
<a class="repository col-xs-12 col-sm-6 col-md-4" href="https://github.com/avast-tl/retdec">
<h4>RetDec</h4>
<div class="stats">
<div><span class="octicon octicon-star"></span>3000+</div>
<div><span class="octicon octicon-repo-forked"></span>300+</div>
</div>
<div class="desc">
RetDec is a retargetable machine-code decompiler based on LLVM.
</div>
</a>
</div>
{% for repo_category in site.selected_repositories %}
<div class="category row">
<div class="col-xs-12">
<h2>{{ repo_category[0] }}</h2>
</div>
{% for repo_name in repo_category[1] %} {% for repo in site.github.public_repositories %} {% if repo_name == repo.name %}
<a class="repository col-xs-12 col-sm-6 col-md-4" href="{{ repo.html_url }}">
<h4>{{ repo.name }}</h4>
<div class="stats">
<div><span class="octicon octicon-star"></span>{{ repo.stargazers_count }}</div>
<div><span class="octicon octicon-repo-forked"></span>{{ repo.forks_count }}</div>
</div>
<div class="desc">
{{ repo.description }}
</div>
</a>
{% endif %} {% endfor %} {% endfor %}
</div>
{% endfor %}
</div>
</body>
</html>