From 5a50112dee8f207513ad9c13f68d58423de5702c Mon Sep 17 00:00:00 2001 From: amyleewalton Date: Wed, 17 Jun 2015 17:36:47 -0400 Subject: [PATCH 1/2] downloads page added to footer --- _includes/footer.html | 2 +- pages/downloads.md | 60 +++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 61 insertions(+), 1 deletion(-) create mode 100644 pages/downloads.md diff --git a/_includes/footer.html b/_includes/footer.html index 8fc3f14..e066105 100644 --- a/_includes/footer.html +++ b/_includes/footer.html @@ -1,3 +1,3 @@
- Copyright © 2015 Artem Pavlenko | License | Media + Copyright © 2015 Artem Pavlenko | Downloads | License | Media
diff --git a/pages/downloads.md b/pages/downloads.md new file mode 100644 index 0000000..1cf719b --- /dev/null +++ b/pages/downloads.md @@ -0,0 +1,60 @@ +--- +layout: 01_page +title: Download +--- + +## Latest Major Release + +The latest release is Mapnik v2.2.0. + +## Platforms + +### OS X + +The recommend install method on OS X is `homebrew`. If you are running `homebrew` simply do: + + brew update && brew install mapnik + +We also provide a pre-built [OS X 64 bit package](http://mapnik.s3.amazonaws.com/dist/v2.2.0/mapnik-osx-v2.2.0.dmg) that will install into the same place (`/usr/local`) as homebrew. + +### iOS + + * [3-way arch (i386/armv7/armv7s) SDK](http://mapnik.s3.amazonaws.com/dist/v2.2.0/mapnik-ios-v2.2.0.tar.bz2) + * [Setup instructions](https://gist.github.com/springmeyer/5710531) + +### Windows + + * [Windows 32 bit Package](http://mapnik.s3.amazonaws.com/dist/v2.2.0/mapnik-win-v2.2.0.zip) + * [Windows 32 bit SDK](http://mapnik.s3.amazonaws.com/dist/v2.2.0/mapnik-win-sdk-v2.2.0.zip) + * [Setup instructions](https://gist.github.com/springmeyer/5651701) + +### Ubuntu + + * [Ubuntu PPA](https://launchpad.net/~mapnik/+archive/v2.2.0) ([more info](https://github.com/mapnik/mapnik/wiki/UbuntuInstallation)) + +## Source + +To build Mapnik v2.2.0 from source either download the [v2.2.0 tarball](http://mapnik.s3.amazonaws.com/dist/v2.2.0/mapnik-v2.2.0.tar.bz2) or pull directly from github: + + git clone https://github.com/mapnik/mapnik.git + git checkout v2.2.0 + +For source install help see the [Install docs](https://github.com/mapnik/mapnik/blob/v2.2.0/INSTALL.md) + +You can also use git to fetch the latest code (will default to `master` branch): + + git clone https://github.com/mapnik/mapnik.git + +Browse the code at [github](https://github.com/mapnik/mapnik). + +Download a snapshot as a [zip archive](https://github.com/mapnik/mapnik/archive/master.zip). + +## Extra Installation Details + +See platform specific notes at [Mapnik Wiki](https://github.com/mapnik/mapnik/wiki/Mapnik-Installation). + +See also the detailed [Install guide](https://github.com/mapnik/mapnik/blob/master/INSTALL.md) for the development code. + +## Older releases + +See the listing at [the download archive on s3](http://mapnik.s3.amazonaws.com/index.html?path=dist/). From f1ad37ac0f7afe7d38c33d2f9255e7527b237cc5 Mon Sep 17 00:00:00 2001 From: amyleewalton Date: Wed, 17 Jun 2015 18:08:08 -0400 Subject: [PATCH 2/2] add downloads link to splash --- _includes/footer.html | 2 +- _layouts/01_splash.html | 4 ++++ css/mapnik.css | 32 +++++++++++++++++++++++--------- pages/downloads.md | 2 +- 4 files changed, 29 insertions(+), 11 deletions(-) diff --git a/_includes/footer.html b/_includes/footer.html index e066105..13c7b87 100644 --- a/_includes/footer.html +++ b/_includes/footer.html @@ -1,3 +1,3 @@
- Copyright © 2015 Artem Pavlenko | Downloads | License | Media + Copyright © 2015 Artem Pavlenko | Downloads | License | Media
diff --git a/_layouts/01_splash.html b/_layouts/01_splash.html index e851d12..3836074 100644 --- a/_layouts/01_splash.html +++ b/_layouts/01_splash.html @@ -16,6 +16,10 @@
the core of geospatial visualization & processing
mapnik combines pixel-perfect image output with lightning-fast cartographic algorithms, and exposes interfaces in C++, Python, and Node.
+ +
diff --git a/css/mapnik.css b/css/mapnik.css index 62d8d03..dd6867e 100644 --- a/css/mapnik.css +++ b/css/mapnik.css @@ -124,7 +124,7 @@ hr.sm { /* background */ .gradient { - height: 450px; + height: 500px; padding-bottom: 30px; background-color: white; background-image: @@ -405,14 +405,18 @@ h1.fancy { } } +@media only screen and (max-width: 800px) { + #intro.big { + font-size: 30px; + line-height: 40px; + } +} + @media only screen and (max-width: 640px) { #navbar .pad4y { padding-top: 10px; padding-bottom: 10px; } -} - -@media only screen and (max-width: 640px) { #mapnik .splash { text-size: 12; } #logo.pad4y { padding-top: 10px; @@ -429,11 +433,6 @@ h1.fancy { font-size: 32px; line-height: 45px; } -} - - -@media only screen and (max-width: 640px) { - .toc { border: 1px solid rgba(0,0,0,0.10); margin-bottom: 20px; @@ -1008,6 +1007,21 @@ a.quiet.dark.active, a.quiet.dark:hover { color:rgba(255,255,255,0.5); } color: rgba(255,255,255,.75); } +.dark .button.white { + border: none; + box-shadow: 0px 0px 0px 2px white inset; + color: white; + text-transform:uppercase; + letter-spacing: 2; + font-size: 14px; +} + +.dark .button.white:hover, +.dark .button.white.active { + color: rgb(86, 181, 190); + background-color: white; +} + .dark .button.stroke.quiet { background-color: transparent; box-shadow: 0px 0px 0px 2px rgba(255,255,255,.25)inset; diff --git a/pages/downloads.md b/pages/downloads.md index 1cf719b..5ab4fb5 100644 --- a/pages/downloads.md +++ b/pages/downloads.md @@ -1,6 +1,6 @@ --- layout: 01_page -title: Download +title: Downloads --- ## Latest Major Release