-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathindex.html
78 lines (62 loc) · 3.29 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<style>
body {
font-family: sans-serif;
width: 800px;
max-width: 100%;
margin: 0 auto;
line-height: 1.6em;
}
a, a:active, a:visited {
color: mediumblue;
}
</style>
<meta property="og:title" content="Costello 💰"/>
<meta property="og:description" content="This is a Trello Power-Up which lets you add costs to cards and provides a sum of those costs as a board item."/>
<meta property="og:image" content="https://cdn.glitch.com/380a7bed-fba7-4128-9418-b75f0d1d7492%2FScreen%20Shot%202017-05-21%20at%204.53.30%20PM.png?1495410834725"/>
<meta name="twitter:card" content="summary">
<meta name="twitter:title" content="Costello 💰"/>
<meta name="twitter:description" content="This is a Trello Power-Up which lets you add costs to cards and provides a sum of those costs as a board item."/>
<meta name="twitter:image" content="https://cdn.glitch.com/380a7bed-fba7-4128-9418-b75f0d1d7492%2FScreen%20Shot%202017-05-21%20at%204.53.30%20PM.png?1495410834725"/>
</head>
<body>
<script src="https://trello.com/power-ups/power-up.min.js"></script>
<script src="client.js"></script>
<h2>Costello: Costs for Trello 🚀</h2>
<p>
Hey there 👋
</p>
This is a Trello Power-Up which lets you add costs to cards and provides a sum of those costs as a board item.
<img src="https://cdn.glitch.com/380a7bed-fba7-4128-9418-b75f0d1d7492%2FScreen%20Shot%202017-05-21%20at%204.31.26%20PM.png?1495409557125">
<img src="https://cdn.glitch.com/380a7bed-fba7-4128-9418-b75f0d1d7492%2FScreen%20Shot%202017-05-21%20at%204.31.50%20PM.png?1495409554873">
<p>
To enable this Power-Up for your Trello boards, you'll need to go here:
</p>
<p>
👉 <a href="https://trello.com/power-ups/admin">https://trello.com/power-ups/admin</a>
</p>
<p>
Select the Trello team you want to add the Power-Up to. Note: You need to be an admin of the Trello team to add custom Power-Ups to it.
</p>
<p>
Now click the <code>Create new Power-Up</code> button. If this is your first time adding a Power-Up, you'll need to agree to a "Joint Developer Agreement" first. After you have done that, you just need to give your Power-Up a name, and paste this app's manifest url, <code>https://webrender.github.io/trello-costello/manifest.json</code>.
</p>
<p>
Click <code>Save</code> and it's time to celebrate 🎉 🎊
</p>
<p>
Now when you look at the Power-Ups for any board in that team, this Power-Up will be available. Enable it and you'll be able to set costs for cards when you open them. If you'd like to add functionality, you can fork this <a href="https://glitch.com/~trello-costello">Glitch project</a> and edit the source as you please.
</p>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-103319271-1', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>