-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfaq.html
More file actions
122 lines (104 loc) · 5.75 KB
/
Copy pathfaq.html
File metadata and controls
122 lines (104 loc) · 5.75 KB
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
109
110
111
112
113
114
115
116
117
118
119
120
121
<html>
<head>
<title>basic site - faq</title>
<link rel='stylesheet' type='text/css' href='css/footer.css'>
<link rel='stylesheet' type='text/css' href='css/menu.css'>
<link rel='stylesheet' type='text/css' href='css/pagestyle.css'>
<link rel='stylesheet' type='text/css' href='css/pre.css'>
<meta name='viewport' content='width=device-width, initial-scale=0.75, maximum-scale=1.0'>
<!-- uses google-code-prettify for syntax highlighting
see https://github.com/google/code-prettify/ for more info -->
<script src="https://cdn.jsdelivr.net/gh/google/code-prettify@master/loader/run_prettify.js"></script>
<!-- uses MathJax CDC for LaTeX support
see http://docs.mathjax.org/en/latest/start.html for more info -->
<script type="text/x-mathjax-config">
MathJax.Hub.Config
({
extensions: ["tex2jax.js"],
jax: ["input/TeX", "output/HTML-CSS"],
tex2jax:
{
inlineMath: [['$','$'], ['\\(','\\)']],
displayMath: [ ['$$','$$'], ["\\[","\\]"] ],
processEscapes: true
},
"HTML-CSS": { availableFonts: ["MathJax TeX"] }
});
</script>
<script type="text/javascript"
src="https://cdn.mathjax.org/mathjax/latest/MathJax.js">
</script>
</head>
<body>
<div class="header" id="header">
<img class="logo" src="img/nifty-site-manager.png" width="300px" style="max-width: 90%; margin-top:15px"><br>
<a href="index.html" class="header_item">Home</a>
<a href="about.html" class="header_item">About</a>
<a href="faq.html" class="header_item">FAQ</a>
</div>
<div class="content">
<h2>FAQ</h2>
<h3>How do I import this nsm site repository template?</h3>
<h4>BitBucket:</h4>
<ol>
<li>Click the <mono>+</mono> on the left of the page then click on <mono>import repository</mono>.</li>
<li>Under <mono>URL</mono> enter <mono>https://bitbucket.org/nsm-templates/basic-site</mono>.</li>
<li>Under <mono>Owner</mono> select which team/user you would like to import the repository under.</li>
<li>Under <mono>Repository name</mono> choose a name for your repository.</li>
<li>Click <mono>Import repository</mono>.</li>
</ol>
<h4>GitHub:</h4>
<ol>
<li>Click the <mono>+</mono> on the top-right of the page then click on <mono>Import repository</mono>.</li>
<li>Under <mono>Your old repository’s clone URL</mono> enter <mono>https://github.com/nsm-templates/basic-site</mono></li>
<li>Under <mono>Owner</mono> select which organisation/user you would like to import the repository under.</li>
<li>Under <mono>Name</mono> choose a name for your repository.</li>
<li>Click <mono>Begin import</mono>.</li>
</ol>
<h4>GitLab:</h4>
<ol>
<li>Click the <mono>+</mono> on the top-right of the page then click on <mono>new project</mono>.</li>
<li>Select the <mono>Import project</mono> near the top-right of the page.</li>
<li>Select <mono>Repo by URL</mono>.</li>
<li>Under <mono>Git repository URL</mono> enter <mono>https://gitlab.com/nsm-templates/basic-site</mono></li>
<li>Under <mono>Project url</mono> select which group/user you would like to import the repository under.</li>
<li>Under <mono>Project name</mono> and <mono>Project slug</mono> choose a name for your repository.</li>
<li>Click <mono>Create project</mono>.</li>
</ol>
<h3>How do I fork this nsm site repository template?</h3>
<ol>
<li>Make sure you're logged in to BitBucket/GitHub/GitLab with your account.</li>
<li>On BitBucket, click the <mono>+</mono> on the left of the page then click on <mono>Fork this repository</mono>.</li>
<li>On GitHub/GitLab, click the <mono>Fork</mono> button on the upper right-hand side of the repository page.</li>
</ol>
<h3>How do I rename the forked repository?</h3>
<ol>
<li>Navigate to the main page of the forked repository.</li>
<li>Click Settings.</li>
<li>Under the <mono>Repository/Project name</mono> heading, enter the name you would like. On GitLab you will also need to navigate down to <mono>Advanced</mono> and change the path.
</ol>
<h3>Can I remove the fork relationship?</h3>
<p>
On GitLab you can under the advanced part of the repository's settings, unfortunately on BitBucket and GitHub you cannot (try importing instead!).
</p>
<h3>How do I view the site locally?</h3>
<ol>
<li>Make a local clone of the repository on your computer.</li>
<li>open <mono>index.html</mono> with your browser of choice.</li>
</ol>
</div>
<div class="footer">
<div class="footer_text">Basic Site Template</div>
<noselect><img src="img/nsm.png" width="100px" style="margin-bottom:20px">
<br></noselect>
<b>Mirrors:</b>
[<a href="https://nsm-templates.github.io/basic-site" class="footer_item">GitHub</a>]
[<a href="https://nsm-templates.gitlab.io/basic-site" class="footer_item">GitLab</a>]
<p style="margin-top:0px">
<small>Site Manager: <a href="https://nift.cc">Nift</a></small>
</p>
<noselect><small>© 2015 - <script>document.write(new Date().getFullYear())</script> <a href="https://n-ham.com/">Nicholas Ham</a></small>
<br><br></noselect>
</div>
</body>
</html>