forked from jefftriplett/django-release-cycle
-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathminimal.html
43 lines (40 loc) · 1.65 KB
/
minimal.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Drupal Release Cycle</title>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="twitter:image:src" content="https://hugovk.github.io/drupal-release-cycle/screenshot.png"/>
<meta name="twitter:site" content="@hugovk" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Drupal Release Cycle" />
<meta
name="twitter:description"
content="A chart showing all release dates and end-of-life dates for all modern Drupal versions."
/>
<meta property="og:image" content="https://hugovk.github.io/drupal-release-cycle/screenshot.png"/>
<meta property="og:type" content="object" />
<meta property="og:title" content="Drupal Release Cycle" />
<meta property="og:url" content="https://github.com/hugovk/drupal-release-cycle" />
<meta
property="og:description"
content="A chart showing all release dates and end-of-life dates for all modern Drupal versions."
/>
<link rel="icon" href="favicon.ico">
<script src="https://www.gstatic.com/charts/loader.js"></script>
<!-- import the webpage's JavaScript files -->
<script src="dates.js" defer></script>
<script src="minimal.js" defer></script>
<script src="script.js" defer></script>
<script>
google.charts.load("current", { packages: ["gantt"] });
google.charts.setOnLoadCallback(function () {
drawChart(releases);
});
</script>
</head>
<body>
<div id="chart_div"></div>
</body>
</html>