blob: c2314fc74ccb4aa1862d75e8303b9d1c1bb1b726 (
plain)
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
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Dillo Website</title>
<style>
body {
background: white;
line-height: 1.5;
margin: 3em;
font-family: sans-serif;
}
/*a { color: black }*/
.main {
/*background: lightgreen;*/
margin: 2em auto;
width: 50em;
}
h1 {
margin-top: 0.25em;
margin-bottom: 0.25em
}
h3 {
color: #56f;
background: #f0f0f0;
padding: 0.5em
}
.github-button { padding: 0.5em; border: 1px solid lightgrey; float: right;
background: #f5f5f5 }
.github-logo { height: 1.5em; vertical-align: middle; }
.shot { width: 8em; margin: 0; border: none }
</style>
</head>
<body>
<div class="main">
<div class="github-button">
<img alt="GitHub logo" class="github-logo" src="img/gh.png">
<a href="https://github.com/dillo-browser/dillo">View on GitHub</a>
</div>
<h1>Welcome to the Dillo Website</h1>
<p>Dillo is a fast and small graphical web browser with the following features: </p>
<ul>
<li>Multi-platform, running on Linux, BSD, MacOS and even Atari.</li>
<li>Written in C and C++ with few dependencies.</li>
<li>Implements its own real-time rendering engine.</li>
<li>Low memory usage and fast rendering, even with large pages.</li>
<li>Uses the fast and bloat-free <a href="https://www.fltk.org/">FLTK</a> GUI library.</li>
<li>Support for HTTP, HTTPS, FTP and local files.</li>
<li>Extensible with plugins written in any language
(<a href="https://github.com/topics/dillo-plugin">search on GitHub</a>).
</li>
<li>Is free software licensed with the GPLv3.</li>
<li>Helps authors to comply with web standards by using the
<a href="old/help/bug_meter.html">bug meter</a>
<img alt="Bugmeter icon" style="vertical-align:middle" src="img/bugmeter.png">.</li>
</ul>
<h2>Screenshots</h2>
<a href="img/plan9.png"><img alt="Plan9 website" class="shot" src="img/mini-plan9.png"></a>
<a href="img/armadillo.png"><img alt="Armadillo Wikipedia page" class="shot" src="img/mini-armadillo.png"></a>
<a href="img/suckless.png"><img alt="Suckless website" class="shot" src="img/mini-suckless.png"></a>
<a href="img/aaronsw.png"><img alt="Aaron Swartz website" class="shot" src="img/mini-aaronsw.png"></a>
<a href="img/hackernews.png"><img alt="Hacker News website" class="shot" src="img/mini-hackernews.png"></a>
<a href="img/100r.png"><img alt="100 Rabbits website" class="shot" src="img/mini-100r.png"></a>
<p style="text-align:right">...check <a href="old/screenshots/index.html">the archives</a> for more pictures.</p>
<h2>Project objectives</h2>
<ul>
<li>Lower the barrier of entry to the web.</li>
<li>Support old or small machines and slow connections.</li>
<li>Personal security and privacy.</li>
<li>High software efficiency.</li>
</ul>
<p>
Check the <a href="old/index.html">old website</a> for more details.
</p>
<h2>Download</h2>
<p>Download Dillo from the
<a href="https://github.com/dillo-browser/dillo/">git repository</a>
and follow the instructions in the README to install it.
</p>
<h2>Contributing</h2>
<p>We always welcome contributions, here are several ways in which
you can help:</p>
<ul>
<li>Use Dillo to browse the web and if you find something that
is not working,
<a href="https://github.com/dillo-browser/dillo/issues/new">open an issue</a>
or send an email to
<a href="mailto:dillo-dev@mailman3.com">dillo-dev@mailman3.com</a>.
</li>
<li>Spread the word, so the world knows Dillo exists and is
still alive.</li>
<li>Implement some new feature or fix some bug and send us a
patch or create a pull request.</li>
</ul>
<p style="text-align: center">
<a href="https://github.com/dillo-browser/dillo">GitHub</a> -
<a rel="me" href="https://fosstodon.org/@dillo">Mastodon</a> -
<a href="irc://irc.libera.chat/#dillo">IRC</a> -
<a href="https://lists.mailman3.com/postorius/lists/dillo-dev.mailman3.com/">Mailing list</a>
</p>
</div>
</body>
</html>
|