A tool to migrate GitHub Repositories to Gitea including all issues
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
gitea-github-migrator/web/templates/base/head.tmpl

34 lines
913 B

<!DOCTYPE html>
<html>
<head>
<!-- Standard Meta -->
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
<!-- Site Properties -->
<title>Gitea Migrator</title>
<script src="/static/js/jquery-3.1.1.min.js"></script>
<script src="/static/js/semantic.min.js"></script>
<link href="/static/css/semantic.min.css" rel="stylesheet">
<style type="text/css">
body {
background-color: #DADADA;
padding: 30px;
}
body > .grid {
height: 100%;
}
.column {
max-width: 600px;
}
.big {
max-width: 1000px !important;
}
</style>
</head>
<body>
{{if .Flash.ErrorMsg}}
<div class="ui error message">{{.Flash.ErrorMsg}}</div>
{{end}}