-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.html
88 lines (85 loc) · 4.14 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- HTML Meta Tags -->
<title>Django Release Cycle</title>
<meta name="description" content="A chart showing all release dates and end-of-life dates for all modern Django versions.">
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Facebook Meta Tags -->
<meta property="og:url" content="https://jefftriplett.com/django-release-cycle/">
<meta property="og:type" content="website">
<meta property="og:title" content="Django Release Cycle">
<meta property="og:description" content="A chart showing all release dates and end-of-life dates for all modern Django versions.">
<meta property="og:image" content="https://jefftriplett.com/django-release-cycle/assets/screenshot.png">
<!-- Twitter Meta Tags -->
<meta name="twitter:card" content="summary_large_image">
<meta property="twitter:domain" content="jefftriplett.com">
<meta property="twitter:url" content="https://jefftriplett.com/django-release-cycle/">
<meta name="twitter:title" content="Django Release Cycle">
<meta name="twitter:description" content="A chart showing all release dates and end-of-life dates for all modern Django versions.">
<meta name="twitter:image" content="https://jefftriplett.com/django-release-cycle/assets/screenshot.png">
<!-- Stylesheets and Scripts -->
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/github-fork-ribbon-css/0.2.3/gh-fork-ribbon.min.css">
<script src="https://www.gstatic.com/charts/loader.js"></script>
<script src="script.js" defer></script>
</head>
<body>
<div class="container max-w-xs px-8 mx-auto text-xl xl:max-w-7xl lg:max-w-6xl md:max-w-3xl sm:max-w-md border-4 border-gray-900 bg-gradient-to-br from-[#092e20] to-[#0c4b33] py-16">
<div class="lg:content-auto h-screen text-[#f5f5f5]">
<style>
a { color: #44b78b; text-decoration: underline; transition: color 0.2s ease; }
a:hover { color: #c9f0dd; }
</style>
<header class="pb-12">
<h1 class="text-4xl font-bold">
Django Release Cycle
</h1>
</header>
<div id="chart_div" class="border-4 border-[#44b78b] p-2 bg-[#f4f9f6]"></div>
<div class="flex flex-wrap justify-center gap-4 mt-4 text-sm">
<div class="flex items-center">
<span class="inline-block w-4 h-4 mr-2 bg-[#44b78b]"></span>
<span>Mainstream/Bugfix Support</span>
</div>
<div class="flex items-center">
<span class="inline-block w-4 h-4 mr-2 bg-[#f2a600]"></span>
<span>Security Support</span>
</div>
<div class="flex items-center">
<span class="inline-block w-4 h-4 mr-2 bg-[#db4437]"></span>
<span>End of Life</span>
</div>
<div class="flex items-center">
<span class="inline-block w-4 h-4 mr-2 bg-[#5e97f6]"></span>
<span>Future Release</span>
</div>
</div>
<footer class="pt-12 text-lg">
<div>
Made by:
<a href="https://github.com/jefftriplett">Jeff Triplett</a>
aka
<a href="https://twitter.com/webology">@webology</a>
</div>
<div>
Remixed from:
<a href="https://twitter.com/di_codes">@di_codes</a>'s
<a href="https://python-release-cycle.glitch.me/">Python Release Cycle</a>
</div>
<div>
Made with:
<a href="https://developers.google.com/chart/interactive/docs/gallery/ganttchart">Google Charts - Gantt Chart</a>
</div>
<div>
Data Source:
<a href="https://www.djangoproject.com/download/#supported-versions">Django Project Downloads</a>
</div>
</footer>
</div>
<a class="github-fork-ribbon" href="https://github.com/jefftriplett/django-release-cycle" data-ribbon="Fork me on GitHub" title="Fork me on GitHub">Fork me on GitHub</a>
</div>
</body>
</html>