gocron/templates/error/404.html

12 lines
317 B
Go
Raw Normal View History

2017-04-01 09:04:40 +00:00
{{{ template "common/header" . }}}
2017-04-13 09:35:59 +00:00
<script>
swal({
title: "404 - NOT FOUND",
text: "您访问的页面不存在",
type: "warning"
},
function(){
location.href = "/"
});
</script>
2017-04-01 09:04:40 +00:00
{{{ template "common/footer" . }}}