From 21c0350033235f4c4576b156789461f7c090d3f7 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Fri, 21 Jun 2013 20:46:51 -0700 Subject: [PATCH] website: community! --- website/source/community/index.html.markdown | 53 ++++++++++++++++++++ website/source/layouts/community.erb | 6 +++ website/source/layouts/layout.erb | 2 +- website/source/stylesheets/_components.scss | 16 ++++++ 4 files changed, 76 insertions(+), 1 deletion(-) create mode 100644 website/source/community/index.html.markdown create mode 100644 website/source/layouts/community.erb diff --git a/website/source/community/index.html.markdown b/website/source/community/index.html.markdown new file mode 100644 index 000000000..8f4bbccca --- /dev/null +++ b/website/source/community/index.html.markdown @@ -0,0 +1,53 @@ +--- +layout: "community" +page_title: "Community" +--- + +# Community + +Packer is a new project with a growing community. Despite this, there are +dedicated users willing to help through various mediums. + +**IRC:** `#packer-tool` on Freenode. + +**Mailing List:** [Packer Google Group](http://groups.google.com/group/packer-tool) + +**Bug Tracker:** [Issue tracker on GitHub](https://github.com/mitchellh/packer/issues). +Please only use this for reporting bugs. Do not ask for general help here. Use IRC +or the mailing list for that. + +## People + +The following people are some of the faces behind Packer. They each contribute +to Packer in some core way. Over time, faces may appear and disappear from this +list as contributors come and go. + +
+
+ +
+

Mitchell Hashimoto (@mitchellh)

+

+ Mitchell Hashimoto is the creator of Packer. He developed the + core of Packer as well as the Amazon, VirtualBox, and VMware + builders. In addition to Packer, Mitchell is the creator of + Vagrant. He is self + described as "automation obsessed." +

+
+
+ +
+ +
+

Jack Pearkes (@pearkes)

+

+ Jack Pearkes created and maintains the DigitalOcean builder + for Packer. Outside of Packer, Jack is an avid open source + contributor, a founder of IRCRelay, + and a lover of all things nature.

+
+
+ +
+
diff --git a/website/source/layouts/community.erb b/website/source/layouts/community.erb new file mode 100644 index 000000000..12c1cc7bc --- /dev/null +++ b/website/source/layouts/community.erb @@ -0,0 +1,6 @@ +<% wrap_layout :inner do %> + <% content_for :sidebar do %> +

+ <% end %> + <%= yield %> +<% end %> diff --git a/website/source/layouts/layout.erb b/website/source/layouts/layout.erb index 6038f8c2a..d8de5c21e 100644 --- a/website/source/layouts/layout.erb +++ b/website/source/layouts/layout.erb @@ -35,7 +35,7 @@ diff --git a/website/source/stylesheets/_components.scss b/website/source/stylesheets/_components.scss index 1dbcc43cc..b04cb99e5 100644 --- a/website/source/stylesheets/_components.scss +++ b/website/source/stylesheets/_components.scss @@ -290,3 +290,19 @@ background: $white url(/images/arrow-right.png) no-repeat center right; } } + +.people { + margin-top: 30px; + + .person { + margin-bottom: 30px; + + h3 { + text-transform: none; + } + + .bio { + padding-left: 150px; + } + } +}