-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
95 lines (82 loc) · 3.61 KB
/
index.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
<!DOCTYPE html>
<html lang="en" class="no-js">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width">
<title>Shoebot</title>
<link rel="stylesheet" href="/css/fonts.css">
<link rel="stylesheet" href="/css/style.css">
<meta name="description" content="Creative coding with Python">
<meta property="og:title" content="Shoebot">
<meta property="og:description" content="Creative coding with Python">
<meta property="og:image" content="https://shoebot.net/logo.jpg">
<meta property="og:image:alt" content="Shoebot logo">
<meta property="og:locale" content="en_GB">
<meta property="og:type" content="website">
<meta name="twitter:card" content="summary_large_image">
<meta property="og:url" content="https://shoebot.net">
<link rel="canonical" href="https://shoebot.net">
<link rel="icon" href="/favicon.ico">
<link rel="icon" href="/favicon.svg" type="image/svg+xml">
<link rel="apple-touch-icon" href="/apple-touch-icon.png">
<link rel="manifest" href="/my.webmanifest">
<meta name="theme-color" content="#FF00FF">
</head>
<body>
<!-- Content -->
<header class="header block">
<hgroup>
<h1>Shoebot</h1>
<h2 class="subtitle">Creative coding with Python</h2>
</hgroup>
</header>
<div class="intro block">
<div class="blurb griditem">
<p>Shoebot is a creative coding environment designed for making vector
graphics and animations with Python. It's a versatile tool aimed at a number
of purposes:</p>
<ul>
<li>an extensive set of drawing commands for playful graphic exploration</li>
<li>make SVG images for pen plotters, or output to PDF and PNG</li>
<li>create simple animations and save them to MP4 files</li>
<li>generate image sets headlessly from a script</li>
</ul>
</div>
<div class="main-screenshot griditem">
<img src="img/main-screenshot.png">
</div>
</div>
<div class="links block">
<div class="downloads griditem">
<h3>Downloads</h3>
<p>Download the latest version:</p>
<div class="download-button">
<a href="https://github.com/shoebot/shoebot/archive/refs/tags/v1.4-beta.zip">Shoebot 1.4-beta</a>
<p class="date">Released on <strong>2021-05-23</strong></p>
</div>
<p>Visit our <a href="https://github.com/shoebot/shoebot">Git repository</a> for the
development version and other downloads.</p>
</div>
<div class="documentation griditem">
<h3>Documentation</h3>
<p>The <a href="https://docs.shoebot.net">Shoebot Manual</a> has all the
details you need to get started and find out what Shoebot can do.</p>
<ul>
<li>try the <a href="https://docs.shoebot.net/extensions.html#atom-extension">Atom editor extension</a> for the best environment to experiment with Shoebot
<li>use Shoebot as a <a href="https://docs.shoebot.net/advanced.html#using-shoebot-as-a-python-module">Python module</a> inside other scripts</li>
<li><a href="https://docs.shoebot.net/live.html">create simple interfaces</a> to control variables</li>
</ul>
</div>
<div class="community griditem">
<h3>Community & Support</h3>
<p>Our <a href="https://github.com/shoebot/shoebot/issues">issue
tracker</a> is the place for reporting problems and feature requests.</p>
<p>The <a href="https://matrix.to/#/#shoebot:matrix.org">Shoebot Matrix
channel</a> is where developers and users hang out. Feel free to stop by and
say hi! Just click the link above to open the channel with your browser
or Matrix client.</p>
<p>
</div>
</div>
</body>
</html>