-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
140 lines (115 loc) · 5.27 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
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
139
140
<!DOCTYPE html>
<html>
<head>
<title>PSJira</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://www.w3schools.com/lib/w3.css">
<link rel="stylesheet" href="https://www.w3schools.com/lib/w3-theme-black.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lato">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.3.0/css/font-awesome.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/octicons/4.4.0/font/octicons.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/prism/1.6.0/themes/prism.min.css" />
<style>
h1 {
font-family: "Lato", sans-serif;
font-weight: 800;
}
.btn-download {
font-weight: 600;
}
.w3-card-4 {
min-height: 460px;
}
.w3-card-4 ul {
padding: 0;
}
.w3-card-4 li {
list-style: none;
}
.w3-card-4 h3 i {
margin-top: 30px;
}
.w3-card-4 h3 .fa,
.w3-card-4 h3 .octicon {
font-size: 120px;
}
.no-decoration {
text-decoration: none;
font-style: normal;
}
div.w3-container {
margin: 30px 0;
}
</style>
</head>
<body>
<!-- Header -->
<header class="w3-container w3-theme w3-padding">
<div class="w3-center">
<h4>A PowerShell module for JIRA</h4>
<h1 class="w3-xxxlarge w3-animate-bottom">PSJira</h1>
<div class="w3-padding-32">
<a href="https://github.com/replicaJunction/PSJira/releases/latest" role="button" class="w3-btn w3-medium w3-dark-grey w3-hover-light-grey btn-download"><i class="octicon octicon-desktop-download"></i> Download</a>
<a href="https://slofile.com/slack/psjira" role="button" class="w3-btn w3-medium w3-dark-grey w3-hover-light-grey"><img src="assets/Slack_Mark_White_Web_22x22.png" alt="Slack"> Join Chat</a>
</div>
</div>
</header>
<div class="white">
<div class="w3-container w3-theme">
<h3>Description</h3>
</div>
<div class="w3-container">
<p class="summary">PSJira is a Windows PowerShell module to interact with <a href="https://www.atlassian.com/software/jira">Atlassian JIRA</a> via a REST API, while maintaining a consistent PowerShell look and feel.</p>
<pre><code class="language-powershell "># Issues created by you in the last week
Get-JiraIssue -Query "created >= -7d AND reporter = currentUser()"</code></pre>
</div>
<div class="w3-container w3-theme w3-large">
<p>Read more in the documentation: <a href="http://psjira.readthedocs.io/en/latest/getting_started.html">Getting Started</a>.</p>
</div>
</div>
<div class=" w3-row-padding w3-center w3-margin-top ">
<div class="w3-third ">
<a href="https://github.com/replicaJunction/PSJira " class="no-decoration ">
<div class="w3-card-4 w3-padding-top ">
<h3>GitHub project<br>
<i class="octicon octicon-mark-github w3-margin-bottom w3-text-theme "></i>
</h3>
<p>Help us make this module even better by collaborating, reporting problems or just stop by to tell us what you think.</p>
</div>
</a>
</div>
<div class="w3-third ">
<div class="w3-card-4 w3-padding-top ">
<h3>Installing<br>
<i class="octicon octicon-terminal w3-margin-bottom w3-text-theme "></i>
</h3>
<p>In the PowerShell console:
<pre><code class="language-powershell ">Install-Module PSJira</code></pre>
<i class="w3-small ">*This requires PowerShell v5 or the <code>PowerShellGet</code> module</i>
</p>
</div>
</div>
<div class="w3-third ">
<a href="http://psjira.readthedocs.io/en/latest/ " class="no-decoration ">
<div class="w3-card-4 w3-padding-top ">
<h3>Documentation<br>
<i class="fa fa-book w3-margin-bottom w3-text-theme "></i>
</h3>
<ul>
<li>Need help to automate JIRA interactions?</li>
<li>Need examples on how to use a command?</li>
</ul>
<p><b>Check out our awesome documentation.</b></p>
</div>
</a>
</div>
</div>
<!-- Footer -->
<footer class="w3-container w3-theme-dark w3-padding-16 ">
<p>PSJira © 2017</p>
<p style="float: right ">Theme powered by <a href="https://www.w3schools.com/w3css/default.asp " target="_blank ">w3.css</a></p>
</footer>
<script src="https://cdnjs.cloudflare.com/ajax/libs/prism/1.6.0/prism.min.js "></script>
</body>
</html>