forked from 0xGrimnir/Simple-Retweet-Bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
68 lines (50 loc) · 1.87 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
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>VetsWhoCode Twitter Bot</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/css/bulma.min.css">
<script defer src="https://use.fontawesome.com/releases/v5.3.1/js/all.js"></script>
</head>
<nav class="navbar is-light" role="navigation" aria-label="main navigation">
<div class="navbar-brand">
<a class="navbar-item" href="#">
<img src="logo.png" width="28" height="28">
</a>
</div>
<div class="navbar-end">
<div class="navbar-item">
<div class="buttons">
<a class="button is-danger" href="https://github.com/VickiLanger/VetsWhoCode-Retweet-Bot/issues/new">
Report an Issue
</a>
</div>
</div>
</div>
</nav>
<section class="hero is-dark is-medium is-bold">
<div class="hero-body">
<div class="container">
<h1 class="title is-1">
#VetsWhoCode Bot
</h1>
<h2 class="subtitle is-3">
Twitter retweet bot promoting veterans who code
</h2>
<hr>
<p>Please use '#VetsWhoCode' or '#vetsWhoCode'. This allows screen readers to read it properly.
</p>
<br>
<a href="https://twitter.com/VetsWhoCodeBot?ref_src=twsrc%5Etfw" class="twitter-follow-button" data-show-count="false">Follow @VetsWhoCodeBot</a><script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
</div>
</div>
</section>
<footer class="footer is-light">
<div class="columns">
<div class="column">
Made with ❤, Python, & Tweepy by <a href="https://twitter.com/vicki_langer">Vicki Langer</a>
</div>
<div class="column">
Wanna make your own bot? Check out this <a href="https://dev.to/vickilanger/vetswhocode-retweet-bot-3j97">article on dev.to</a>.
</div>
</div>
</footer>