Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKushal Pandya <kushalspandya@gmail.com>2019-02-25 11:43:57 +0300
committerKushal Pandya <kushalspandya@gmail.com>2019-02-25 11:43:57 +0300
commit1ad18199ce15071bd5b28a1c4fb008f78cfbe384 (patch)
tree5ae862eb731fc381f0e4bbaa0d6564feb2a69f05 /app/assets
parentdbf0a92292dd054843d28ec27d52222418400ca5 (diff)
parent76ad4c04ae19998956131b22b09719bc7521e569 (diff)
Merge branch '57785-create-project-template-for-netlify' into 'master'
Project Templates for Netlify Closes #57785 See merge request gitlab-org/gitlab-ce!25453
Diffstat (limited to 'app/assets')
-rw-r--r--app/assets/javascripts/projects/project_new.js20
1 files changed, 20 insertions, 0 deletions
diff --git a/app/assets/javascripts/projects/project_new.js b/app/assets/javascripts/projects/project_new.js
index d65e73a3f9c..f021698a7ea 100644
--- a/app/assets/javascripts/projects/project_new.js
+++ b/app/assets/javascripts/projects/project_new.js
@@ -145,6 +145,26 @@ const bindEvents = () => {
text: 'Pages/Hexo',
icon: '.template-option .icon-hexo',
},
+ nfhugo: {
+ text: 'Netlify/Hugo',
+ icon: '.template-option .icon-netlify',
+ },
+ nfjekyll: {
+ text: 'Netlify/Jekyll',
+ icon: '.template-option .icon-netlify',
+ },
+ nfplainhtml: {
+ text: 'Netlify/Plain HTML',
+ icon: '.template-option .icon-netlify',
+ },
+ nfgitbook: {
+ text: 'Netlify/GitBook',
+ icon: '.template-option .icon-netlify',
+ },
+ nfhexo: {
+ text: 'Netlify/Hexo',
+ icon: '.template-option .icon-netlify',
+ },
};
const selectedTemplate = templates[value];