-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathindex.html
108 lines (98 loc) · 4.24 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
---
---
<!DOCTYPE html>
<html lang="en" xmlns:v-on="http://www.w3.org/1999/xhtml" xmlns:v-bind="http://www.w3.org/1999/xhtml">
<head>
<meta charset="UTF-8">
<title>Git history editor - Easily edit your past commits</title>
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/npm/materialize-css@0.98.1/dist/css/materialize.min.css"/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/prismjs@1.20.0/themes/prism.css">
<link href="dist/wickedpicker.min.css" rel="stylesheet">
<link rel="stylesheet" href="css/stylesheet.css">
<link href="img/favicon.ico" rel="icon" type="image/x-icon" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<meta name="description" content="Git history editor">
<meta http-equiv="content-type" content="text/html;charset=UTF-8">
<meta name="google-site-verification" content="AP7ip-eAPj3abUpEkg2_RJsN3o-kUWd83TwIrxfyDCQ" />
<meta property="og:title" content="Git History Editor" />
<meta property="og:url" content="http://git.io/editor" />
<meta property="og:image" content="https://user-images.githubusercontent.com/17952318/30311294-dd7e0f98-9794-11e7-818e-564686f0adc8.png" />
</head>
<body>
<main>
<!--Navbar-->
<nav class="nav-extended primary">
<div class="nav-wrapper">
<div class="container">
<div class="row">
<div class="col s12">
<h1 class="header center-on-small-only">
Git history editor
</h1>
</div>
</div>
<div class="nav-content">
<div class="row">
<div class="col s12">
<ul class="tabs tabs-transparent">
<li class="tab"><a href="#tab-import">Import</a></li>
<li class="tab" :class="{ disabled: step < 2 }"><a href="#tab-edit">Edit</a></li>
<li class="tab" :class="{ disabled: step < 2 }"><a href="#tab-export">Export</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</nav>
<!--Step 1: import-->
{% include import-tab.html %}
<!--Step 2: edit-->
{% include edit-tab.html %}
<!--Step 3: export-->
{% include export-tab.html %}
</main>
<!--Footer-->
<footer class="page-footer primary">
<div class="container">
<div class="row">
<div class="col s4 copyright">
<a class="grey-text text-lighten-4"
href="https://github.com/bokub" target="_blank">
Copyright © 2017 - {{ "now" | date: "%Y" }} bokub<span class="peace">✌</span>
</a>
</div>
<div class="col s4 center">
<a href="https://github.com/bokub/git-history-editor" target="_blank">
<img src="img/github-logo.png" height="32" alt="Github logo">
</a>
</div>
<div class="s4">
<div class="right">
<a v-cloak class="github-button right" href="https://github.com/bokub/git-history-editor"
data-icon="octicon-star" data-size="large" data-count-href="/bokub/git-history-editor/stargazers"
data-show-count="true"
data-count-aria-label="# stargazers on GitHub"
aria-label="Star bokub/git-history-editor on GitHub">Star</a></div>
</div>
</div>
</div>
</footer>
<!--Import jQuery-->
<script src="https://cdn.jsdelivr.net/combine/
npm/jquery@3.5.1,
npm/materialize-css@0.98.1/dist/js/materialize.min.js,
npm/clipboard@2.0.6,
npm/prismjs@1.20.0/components/prism-core.min.js,
npm/prismjs@1.20.0/components/prism-bash.min.js,
npm/moment@2.27.0,
gh/ericjgagnon/wickedpicker@0.4.1/dist/wickedpicker.min.js,
npm/vue@2.5.2
"></script>
<script src="js/vue.js"></script>
<!-- Github button -->
<script async defer src="https://buttons.github.io/buttons.js"></script>
</body>
</html>