Skip to content

Commit d037cce

Browse files
committed
Add about.html page
1 parent f895018 commit d037cce

4 files changed

Lines changed: 177 additions & 1202 deletions

File tree

about.html

Lines changed: 124 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,124 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
5+
<meta charset="utf-8">
6+
<meta name="viewport" content="width=device-width, initial-scale=1">
7+
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
8+
<meta name="description" content="">
9+
<meta name="author" content="">
10+
<link rel="icon" href="./micro_files/icon.png">
11+
<script async defer src="https://buttons.github.io/buttons.js"></script>
12+
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
13+
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
14+
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
15+
<script src="micro_files/platform.js"></script>
16+
17+
<title>Micro Text Editor</title>
18+
19+
<!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->
20+
<link href="micro_files/ie10-viewport-bug-workaround.css" rel="stylesheet">
21+
22+
<!-- Custom styles for this template -->
23+
<link href="micro_files/micro.css" rel="stylesheet">
24+
</head>
25+
<body>
26+
27+
<div class="container">
28+
<div class="header clearfix">
29+
<nav>
30+
<ul class="nav nav-pills pull-right">
31+
<li role="presentation"><a href="index.html">Home</a></li>
32+
<li role="presentation" class="active"><a href="about.html">About</a></li>
33+
<li role="presentation"><a href="https://github.com/zyedidia/micro">Development</a></li>
34+
</ul>
35+
</nav>
36+
<h3 class="micro-logo">Micro</h3>
37+
</div>
38+
39+
<div class="row about">
40+
<div class="col-lg-12">
41+
<div class="heading">
42+
<h2>About</h2>
43+
</div>
44+
<p>Micro is a terminal-based text editor that aims to be easy to use and intuitive, while also taking advantage of the full capabilities of modern terminals. It comes as one single, batteries-included, static binary with no dependencies, and you can download and use it right now.</p>
45+
46+
<p>As the name indicates, micro aims to be somewhat of a successor to the nano editor by being easy to install and use in a pinch, but micro also aims to be enjoyable to use full time, whether you work in the terminal because you prefer it (like me), or because you need to (over ssh).</p>
47+
</div>
48+
</div>
49+
50+
<hr>
51+
52+
<div class="row docs">
53+
<div class="col-lg-12">
54+
<div class="heading">
55+
<h2>Documentation and Help</h2>
56+
</div>
57+
</div>
58+
<div class="col-lg-8">
59+
<p>Micro has a built-in help system which you can access by pressing <code>Ctrl-E</code> and typing <code>help topic</code>. You can also press Ctrl-g to open the main help file. The help files are also viewable online in the Github repository.</p>
60+
<p>I also recommend reading the <a href="https://github.com/zyedidia/micro/tree/master/runtime/help/tutorial.md">tutorial</a> for
61+
a brief introduction to the more powerful configuration features micro offers.</p>
62+
63+
<br>
64+
<p>If you have any questions, feel free to open an issue in the <a href="https://github.com/zyedidia/micro/issues">Github issue tracker</a> or to ask more informally in the <a href="https://gitter.im/zyedidia/micro">Gitter chat</a></p>
65+
</div>
66+
<div class="col-lg-1">
67+
</div>
68+
<div class="col-lg-3">
69+
<h4>Help topics</h4>
70+
<ul style="list-style-type:none; padding:0;">
71+
<li><a href="https://github.com/zyedidia/micro/tree/master/runtime/help/help.md">main help</a></li>
72+
<li><a href="https://github.com/zyedidia/micro/tree/master/runtime/help/keybindings.md">keybindings</a></li>
73+
<li><a href="https://github.com/zyedidia/micro/tree/master/runtime/help/commands.md">commands</a></li>
74+
<li><a href="https://github.com/zyedidia/micro/tree/master/runtime/help/colors.md">colors</a></li>
75+
<li><a href="https://github.com/zyedidia/micro/tree/master/runtime/help/options.md">options</a></li>
76+
<li><a href="https://github.com/zyedidia/micro/tree/master/runtime/help/plugins.md">plugins</a></li>
77+
</ul>
78+
</div>
79+
</div>
80+
81+
<hr>
82+
83+
<div class="row faq">
84+
<div class="col-lg-12">
85+
<div class="heading">
86+
<h2>FAQs</h2>
87+
</div>
88+
<h4>Does micro support Vi keybindings?</h4>
89+
<p>No, if you want to use Vim then use Vim.</p>
90+
<br>
91+
<h4>Can micro support the Command key on Mac?</h4>
92+
<p>Unfortunately terminals don't send key events for the Command key so it's impossible for micro to make keybindings for it.</p>
93+
<br>
94+
<h4>Can I contribute even if I don't know Go?</h4>
95+
<p>Yes! You can help by creating colorschemes or syntax files or by improving the documentation. If you know Lua you can write plugins.</p>
96+
<br>
97+
<h4>How can I donate?</h4>
98+
<p>We appreciate the gesture, but we don't accept donations.</p>
99+
<br>
100+
<h4>Syntax highlighting isn't working well. I only see a few colors/no colors</h4>
101+
<p>Your <code>TERM</code> variable probably indicates that your terminal only supports 16 colors. You can change it like so to enable 256 colors: <code>$ export TERM=xterm-256color</code>. Alternatively you can use one of micro's 16 color colorschemes by running <code>> set colorscheme simple</code>.
102+
</div>
103+
</div>
104+
105+
<hr>
106+
107+
<div class="row logos">
108+
<div class="col-lg-12">
109+
<div class="heading">
110+
<h2>Logos</h2>
111+
</div>
112+
<p>You can download the logos for free from here</p>
113+
</div>
114+
</div>
115+
116+
<footer class="footer">
117+
<p>View the source code for this website on <a href="https://github.com/micro-editor/micro-editor.github.io">Github</a></p>
118+
</footer>
119+
</div> <!-- /container -->
120+
121+
<!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->
122+
<script src="micro_files/ie10-viewport-bug-workaround.js"></script>
123+
</body>
124+
</html>

index.html

Lines changed: 49 additions & 49 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
<!DOCTYPE html>
2-
<html lang="en"><head>
2+
<html lang="en">
3+
<head>
34
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
45
<meta charset="utf-8">
56
<meta name="viewport" content="width=device-width, initial-scale=1">
@@ -29,9 +30,8 @@
2930
<nav>
3031
<ul class="nav nav-pills pull-right">
3132
<li role="presentation" class="active"><a href="index.html">Home</a></li>
32-
<!-- <li role="presentation"><a href="#">About</a></li> -->
33+
<li role="presentation"><a href="about.html">About</a></li>
3334
<li role="presentation"><a href="https://github.com/zyedidia/micro">Development</a></li>
34-
<!-- Place this tag where you want the button to render. -->
3535
</ul>
3636
</nav>
3737
<h3 class="micro-logo">Micro</h3>
@@ -122,57 +122,57 @@ <h4>Mouse Support</h4>
122122

123123
<div class="col-lg-12">
124124
<br>
125-
<p style="padding-top: 20px;">And much more! Check out the full list of features <a href="https://github.com/zyedidia/micro#features">here</a> as well as the built-in help system also viewable online <a href="https://github.com/zyedidia/micro/tree/master/runtime/help">here</a>.
126-
</div>
125+
<p style="padding-top: 20px;">And much more! Check out the full list of features <a href="https://github.com/zyedidia/micro#features">here</a> as well as the built-in help system also viewable online <a href="https://github.com/zyedidia/micro/tree/master/runtime/help">here</a>.</p>
127126
</div>
127+
</div>
128+
129+
<hr>
128130

129-
<hr>
130-
131-
<div class="row contributing">
132-
<div class="col-lg-6">
133-
<div class="heading">
134-
<h2>Contributing</h2>
135-
</div>
136-
<p>If you find any bugs, please report them! I am also happy to accept pull requests from anyone.</p>
137-
<p>You can use the GitHub issue tracker to report bugs, ask questions, or suggest new features.</p>
138-
<p>For a more informal setting to discuss the editor, you can join the Gitter chat.</p>
139-
<br>
140-
<div class="col-md-6">
141-
<p><a class="btn btn-md btn-success" href="https://github.com/zyedidia/micro" role="button">View the Github project</a></p>
142-
</div>
143-
<div class="col-md-6">
144-
<p><a class="btn btn-md btn-success" href="https://gitter.im/zyedidia/micro" role="button">Join the Gitter Chat</a></p>
145-
</div>
131+
<div class="row contributing">
132+
<div class="col-lg-6">
133+
<div class="heading">
134+
<h2>Contributing</h2>
135+
</div>
136+
<p>If you find any bugs, please report them! I am also happy to accept pull requests from anyone.</p>
137+
<p>You can use the GitHub issue tracker to report bugs, ask questions, or suggest new features.</p>
138+
<p>For a more informal setting to discuss the editor, you can join the Gitter chat.</p>
139+
<br>
140+
<div class="col-md-6">
141+
<p><a class="btn btn-md btn-success" href="https://github.com/zyedidia/micro" role="button">View the Github project</a></p>
146142
</div>
147-
<div class="col-lg-6">
148-
<div class="heading">
149-
<h2>Testimonials</h2>
150-
</div>
151-
<ul class="testimonials">
152-
<li><p><a href="https://gitter.im/zyedidia/micro?at=57c5b2069bac566763729ac2">"Finally a simple editor that just works, with amazing mouse support."</a></p></li>
153-
<li><p><a href="https://www.reddit.com/r/golang/comments/4f8e0q/micro_a_modern_and_intuitive_terminalbased_text/d26qse8">"I really love this. This is definitely replacing nano for me."</a></p></li>
154-
<li><p><a href="https://github.com/zyedidia/micro/issues/217#issuecomment-243134046">"Keep up the great work, you have saved me from Nano and Vim suffering!"</a></p></li>
155-
<li><p><a href="https://twitter.com/kelseyhightower/status/770735086400577536">"The micro text editor is dope."</a></p></li>
156-
<li><p><a href="https://www.reddit.com/r/commandline/comments/5059qw/micro_a_modern_and_intuitive_terminalbased_text/d71t2y8">"Nice, readable source, with generous use of comments. I wonder if this is that 'idiomatic go' I keep hearing about."</a></p></li>
157-
</ul>
143+
<div class="col-md-6">
144+
<p><a class="btn btn-md btn-success" href="https://gitter.im/zyedidia/micro" role="button">Join the Gitter Chat</a></p>
158145
</div>
159146
</div>
147+
<div class="col-lg-6">
148+
<div class="heading">
149+
<h2>Testimonials</h2>
150+
</div>
151+
<ul class="testimonials">
152+
<li><p><a href="https://gitter.im/zyedidia/micro?at=57c5b2069bac566763729ac2">"Finally a simple editor that just works, with amazing mouse support."</a></p></li>
153+
<li><p><a href="https://www.reddit.com/r/golang/comments/4f8e0q/micro_a_modern_and_intuitive_terminalbased_text/d26qse8">"I really love this. This is definitely replacing nano for me."</a></p></li>
154+
<li><p><a href="https://github.com/zyedidia/micro/issues/217#issuecomment-243134046">"Keep up the great work, you have saved me from Nano and Vim suffering!"</a></p></li>
155+
<li><p><a href="https://twitter.com/kelseyhightower/status/770735086400577536">"The micro text editor is dope."</a></p></li>
156+
<li><p><a href="https://www.reddit.com/r/commandline/comments/5059qw/micro_a_modern_and_intuitive_terminalbased_text/d71t2y8">"Nice, readable source, with generous use of comments. I wonder if this is that 'idiomatic go' I keep hearing about."</a></p></li>
157+
</ul>
158+
</div>
159+
</div>
160160

161-
<br>
162-
163-
<footer class="footer">
164-
<p>View the source code for this website on <a href="https://github.com/micro-editor/micro-editor.github.io">Github</a></p>
165-
</footer>
166-
</div> <!-- /container -->
161+
<br>
167162

168-
<!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->
169-
<script src="micro_files/ie10-viewport-bug-workaround.js"></script>
163+
<footer class="footer">
164+
<p>View the source code for this website on <a href="https://github.com/micro-editor/micro-editor.github.io">Github</a></p>
165+
</footer>
166+
</div> <!-- /container -->
170167

171-
<script>
172-
function download_page() {
173-
var win = window.open("https://github.com/zyedidia/micro/releases/latest", '_blank');
174-
win.focus();
175-
}
176-
</script>
177-
</body>
178-
</html>
168+
<!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->
169+
<script src="micro_files/ie10-viewport-bug-workaround.js"></script>
170+
171+
<script>
172+
function download_page() {
173+
var win = window.open("https://github.com/zyedidia/micro/releases/latest", '_blank');
174+
win.focus();
175+
}
176+
</script>
177+
</body>
178+
</html>

micro_files/micro.css

Lines changed: 4 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ body {
1919

2020
/* Everything but the jumbotron gets side spacing for mobile first views */
2121
.header,
22-
.features,
2322
.footer {
2423
padding-right: 15px;
2524
padding-left: 15px;
@@ -82,10 +81,10 @@ p.lead {
8281
}
8382

8483
/* Supporting features content */
85-
.features {
86-
margin: 40px 0;
87-
margin-top: 10px;
88-
}
84+
/* .features { */
85+
/* margin: 40px 0; */
86+
/* margin-top: 10px; */
87+
/* } */
8988
.heading {
9089
margin: 40px 0;
9190
margin-top: 0;
@@ -100,24 +99,6 @@ p.lead {
10099
margin-top: 28px;
101100
}
102101

103-
/* Responsive: Portrait tablets and up */
104-
@media screen and (min-width: 768px) {
105-
/* Remove the padding we set earlier */
106-
.header,
107-
.features,
108-
.footer {
109-
padding-right: 0;
110-
padding-left: 0;
111-
}
112-
/* Space out the masthead */
113-
.header {
114-
margin-bottom: 30px;
115-
}
116-
/* Remove the bottom border on the jumbotron for visual effect */
117-
.jumbotron {
118-
border-bottom: 0;
119-
}
120-
}
121102
.nav-pills > li.active > a, .nav-pills > li.active > a:focus, .nav-pills > li.active > a:hover {
122103
background-color: #2F3590;
123104
}

0 commit comments

Comments
 (0)