-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwelcome.html
More file actions
45 lines (42 loc) · 2.03 KB
/
welcome.html
File metadata and controls
45 lines (42 loc) · 2.03 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="style.css">
<title>Jeremy's Code Challenge API</title>
</head>
<body>
<h1>Welcome to Jeremy's Code Challenge API</h1>
<div>
<h3>API Endpoints:</h3>
<h4>Download CSV: (/organizations.csv[?sort=organization][?order=desc])</h4>
<ul>
<li>
Sort by Organization: <a href="/organizations.csv?sort=organization&order=asc">Ascending</a> - <a href="/organizations.csv?sort=organization&order=desc">Descending</a>
</li>
<li>
Sort by Release Count: <a href="/organizations.csv?sort=release_count&order=asc">Ascending</a> - <a href="/organizations.csv?sort=release_count&order=desc">Descending</a>
</li>
<li>
Sort by Total Labor Hours: <a href="/organizations.csv?sort=total_labor_hours&order=asc">Ascending</a> - <a href="/organizations.csv?sort=total_labor_hours&order=desc">Descending</a>
</li>
</ul>
<h4>JSON: (/organizations[?sort=organization][?order=desc])</h4>
<ul>
<li>
Sort by Organization: <a href="/organizations?sort=organization&order=asc">Ascending</a> - <a href="/organizations?sort=organization&order=desc">Descending</a>
</li>
<li>
Sort by Release Count: <a href="/organizations?sort=release_count&order=asc">Ascending</a> - <a href="/organizations?sort=release_count&order=desc">Descending</a>
</li>
<li>
Sort by Total Labor Hours: <a href="/organizations?sort=total_labor_hours&order=asc">Ascending</a> - <a href="/organizations?sort=total_labor_hours&order=desc">Descending</a>
</li>
</ul>
</div>
<div>
<h3>Other Links:</h3>
<p>Linkedin: <a href="https://linkedin.com/in/jeremydherman/" target="_blank">Jeremy Herman</a></p>
<p>GitHub: <a href="https://github.com/Jer512/CodeChallengeAPI" target="_blank">CodeChallengeAPI</a></p>
</div>
</body>
</html>