diff options
author | Unknwon <u@gogs.io> | 2016-01-30 22:10:20 -0500 |
---|---|---|
committer | Unknwon <u@gogs.io> | 2016-01-30 22:10:20 -0500 |
commit | 8436d69eaf435ae6bb50f648c1aed3eef7b0850b (patch) | |
tree | ad2387c17613f1c003b87f5c99452299dcf304b3 /templates | |
parent | 6e03f6161777b38c0c185793e8f0294851796e46 (diff) | |
download | gitea-8436d69eaf435ae6bb50f648c1aed3eef7b0850b.tar.gz gitea-8436d69eaf435ae6bb50f648c1aed3eef7b0850b.zip |
Update and reorganize front-end resources
Diffstat (limited to 'templates')
-rw-r--r-- | templates/.VERSION | 2 | ||||
-rw-r--r-- | templates/base/footer.tmpl | 16 | ||||
-rw-r--r-- | templates/base/head.tmpl | 11 |
3 files changed, 15 insertions, 14 deletions
diff --git a/templates/.VERSION b/templates/.VERSION index 43ad4d3d12..22d091a7fc 100644 --- a/templates/.VERSION +++ b/templates/.VERSION @@ -1 +1 @@ -0.8.25.0129
\ No newline at end of file +0.8.25.0130
\ No newline at end of file diff --git a/templates/base/footer.tmpl b/templates/base/footer.tmpl index 5f2e8da03f..8d87f9f345 100644 --- a/templates/base/footer.tmpl +++ b/templates/base/footer.tmpl @@ -33,20 +33,20 @@ <!-- Third-party libraries --> {{if .RequireHighlightJS}} - <link rel="stylesheet" href="{{AppSubUrl}}/css/highlight-9.0.0/github.css"> - <script src="{{AppSubUrl}}/js/libs/highlight-9.0.0.pack.js"></script> + <link rel="stylesheet" href="{{AppSubUrl}}/plugins/highlight-9.1.0/github.css"> + <script src="{{AppSubUrl}}/plugins/highlight-9.1.0/highlight.pack.js"></script> {{end}} {{if .RequireMinicolors}} - <link rel="stylesheet" href="{{AppSubUrl}}/css/jquery.minicolors-2.1.12.css"> - <script src="{{AppSubUrl}}/js/libs/jquery.minicolors-2.1.12.min.js"></script> + <link rel="stylesheet" href="{{AppSubUrl}}/plugins/jquery.minicolors-2.2.3/jquery.minicolors.css"> + <script src="{{AppSubUrl}}/plugins/jquery.minicolors-2.2.3/jquery.minicolors.min.js"></script> {{end}} {{if .RequireDatetimepicker}} - <link rel="stylesheet" href="{{AppSubUrl}}/css/jquery.datetimepicker-2.4.5.css"> - <script src="{{AppSubUrl}}/js/libs/jquery.datetimepicker-2.4.5.js"></script> + <link rel="stylesheet" href="{{AppSubUrl}}/plugins/jquery.datetimepicker-2.4.5/jquery.datetimepicker.css"> + <script src="{{AppSubUrl}}/plugins/jquery.datetimepicker-2.4.5/jquery.datetimepicker.js"></script> {{end}} {{if .RequireDropzone}} - <link rel="stylesheet" href="{{AppSubUrl}}/css/dropzone-4.2.0.css"> - <script src="{{AppSubUrl}}/js/libs/dropzone-4.2.0.js"></script> + <link rel="stylesheet" href="{{AppSubUrl}}/plugins/dropzone-4.2.0/dropzone.css"> + <script src="{{AppSubUrl}}/plugins/dropzone-4.2.0/dropzone.js"></script> {{end}} <script src="{{AppSubUrl}}/js/libs/emojify-1.1.0.min.js"></script> <script src="{{AppSubUrl}}/js/libs/clipboard-1.5.5.min.js"></script> diff --git a/templates/base/head.tmpl b/templates/base/head.tmpl index 7edea21b63..ce78613534 100644 --- a/templates/base/head.tmpl +++ b/templates/base/head.tmpl @@ -17,19 +17,20 @@ <link rel="shortcut icon" href="{{AppSubUrl}}/img/favicon.png" /> <script src="{{AppSubUrl}}/js/jquery-1.11.3.min.js"></script> - <link rel="stylesheet" href="{{AppSubUrl}}/css/font-awesome-4.4.0.min.css"> + <link rel="stylesheet" href="{{AppSubUrl}}/assets/font-awesome-4.5.0/css/font-awesome.min.css"> + <link rel="stylesheet" href="{{AppSubUrl}}/assets/octicons-3.4.1/octicons.css"> {{if .RequireSimpleMDE}} - <link rel="stylesheet" href="{{AppSubUrl}}/css/simplemde-1.8.1.min.css"> - <script src="{{AppSubUrl}}/js/libs/simplemde-1.8.1.min.js"></script> + <link rel="stylesheet" href="{{AppSubUrl}}/plugins/simplemde-1.10.0/simplemde.min.css"> + <script src="{{AppSubUrl}}/plugins/simplemde-1.10.0/simplemde.min.js"></script> {{end}} <!-- Stylesheet --> - <link rel="stylesheet" href="{{AppSubUrl}}/css/semantic-2.1.6.min.css"> + <link rel="stylesheet" href="{{AppSubUrl}}/css/semantic-2.1.8.min.css"> <link rel="stylesheet" href="{{AppSubUrl}}/css/gogs.css?v={{MD5 AppVer}}"> <!-- JavaScript --> - <script src="{{AppSubUrl}}/js/semantic-2.1.6.min.js"></script> + <script src="{{AppSubUrl}}/js/semantic-2.1.8.min.js"></script> <script src="{{AppSubUrl}}/js/gogs.js?v={{MD5 AppVer}}"></script> <title>{{if .Title}}{{.Title}} - {{end}}{{AppName}}</title> |