Vagrant image on front page
This commit is contained in:
parent
36e0dfee59
commit
5281963ed7
|
@ -220,6 +220,18 @@ blockquote {
|
|||
CONTENT
|
||||
------------------------------ */
|
||||
|
||||
#content img.left {
|
||||
float: left;
|
||||
width: 275px;
|
||||
height: 275px;
|
||||
}
|
||||
|
||||
#content img.right {
|
||||
float: right;
|
||||
width: 275px;
|
||||
height: 275px;
|
||||
}
|
||||
|
||||
.guide h1 {
|
||||
margin-left: 0;
|
||||
margin-top: 5px;
|
||||
|
|
15
index.md
15
index.md
|
@ -2,6 +2,9 @@
|
|||
layout: default
|
||||
title: Welcome
|
||||
---
|
||||
|
||||
<img src="/images/vagrant_chilling.png" class="left" />
|
||||
|
||||
Vagrant is a tool set out to **change the way web developers work**.
|
||||
|
||||
Vagrant quickly and seamlessly builds and provisions virtual machines for
|
||||
|
@ -12,6 +15,11 @@ Vagrant allows ports to be forwarded so you can still test a web service, for ex
|
|||
by forwarding the virtual machine's port 80 to some port on the host machine and
|
||||
visiting it in any browser.
|
||||
|
||||
Are you ready to use vagrant to revolutionize the way you work? Check out
|
||||
the [getting started guide](/docs/getting_started.html).
|
||||
|
||||
<div class="clear"> </div>
|
||||
|
||||
## Why Use Vagrant?
|
||||
|
||||
* **Get up and running without worrying about server setup** - Instead of spending
|
||||
|
@ -29,9 +37,4 @@ visiting it in any browser.
|
|||
is often a pain, since the new developer needs to learn how to setup all the
|
||||
different pieces of the application to get it running on his development machine.
|
||||
Forget about it! Just tell him to pull the latest code base from version control
|
||||
and run `vagrant up` and you're in business!
|
||||
|
||||
## Get Started!
|
||||
|
||||
Are you ready to use vagrant to revolutionize the way you work? Check out
|
||||
the [getting started guide](/docs/getting_started.html).
|
||||
and run `vagrant up` and you're in business!
|
Loading…
Reference in New Issue