Featured portfolio: Choice Stockholm

Featured portfolio: Choice Stockholm

Choice Stockholm is a Stockholm based photographers agency. Started by Pia Borg and Helena Karlsson in 2000. The  idea was to handpick photographers and stylists who were not only the foremost in their genre, but also charming, professional and a pleasure to work with.

They have some great photographers and stylists: Bengt O. Pettersson, Carl Dahlstedt, Dennis Blomberg, Frans Hällqvist, Helén Pe, Wolfgang Kleinschmidt, Cilla Göthlinder and Tove Nilsson.

Every photographer and stylist have their own PortfolioDeck account where they can upload and manage their work. They share a custom made theme that tie the different portfolios together.

Have a look at choicestockholm.com.

Posted by alexisfellenius on November 27, 2011

Tumblr

As part of the preparations to release the next version of PortfolioDeck we have moved this blog to Tumblr, a wonderfully simple and straight-forward blogging tool. We also realigned the design a bit and made it responsive, so it works well on any screen size.

Stay tuned for more on the new release, we think it’s going to be awesome!

Posted by alexisfellenius on November 27, 2011

New theme: Minimal White

We’ve got a new theme design for you. Here are a couple of screenshots.

This is the frontpage, you need to create a set called “Frontpage” and it will show its first image there. If you don’t have any collections the frontpage will show all your sets.

Minimal White frontpage

The collection page shows the cover image for each set in that collection:

Minimal White collection page

When you click a set you’ll get to the first image.

Minimal White item page

If you click “thumbs” you’ll see all images in that set. You can use left/right arrow to navigate through the images.

Minimal White set page

Would you like to use this theme?

  1. Login to your account.
  2. Go to “Themes” in the top-right navigation.
  3. Go to “Theme Gallery” in the left-side navigation.
  4. Click “Use this theme for your portfolio”

Don’t have a PortfolioDeck account? Sign-up for an invite

Posted by alexisfellenius on May 18, 2010

New theme: Minimal Black

We’ve got another theme design for you. It’s the same as Minimal White but black. Here are a couple of screenshots.

This is the frontpage, you need to create a set called “Frontpage” and it will show its first image there. If you don’t have any collections the frontpage will show all your sets.

Minimal Black frontpage

The collection page shows the cover image for each set in that collection:

Minimal Black collection page

When you click a set you’ll get to the first image. You can use left/right arrow to navigate through the images.

Minimal Black item page

If you click “thumbs” you’ll see all images in that set.

Minimal Black set page

Would you like to use this theme?

  1. Login to your account.
  2. Go to “Themes” in the top-right navigation.
  3. Go to “Theme Gallery” in the left-side navigation.
  4. Click “Use this theme for your portfolio”

Don’t have a PortfolioDeck account? Sign-up for an invite

Posted by alexisfellenius on May 18, 2010

Featured portfolio: Anthony Hill

Featured portfolio: Anthony Hill

New site for photographer Anthony Hill designed by Saga-Mariah. Coded by Alexis.

Posted by alexisfellenius on February 10, 2010

Featured portfolio: Frank Aschberg

Featured portfolio: Frank Aschberg

We’re very excited to present the first “live” site built with PortfolioDeck. Go check it out!

Posted by alexisfellenius on December 2, 2009

New: Design your own themes

Now you can design your PortfolioDeck site exactly the way you want it. You have full control over markup, stylesheets and javascript.

What is a theme?

A theme consists of a template for each page type (collection, set, item, page and index) with accompanying assets (stylesheets, javascripts and graphics). The templates are rendered inside a layout template, so you can have a consistent framework for the site (header, navigation and footer).

How do I transform my HTML/CSS mockups to a PortfolioDeck theme?

We have choosen to use Liquid, a designer-friendly templating language. It is basically HTML with a bit of logic to make the templates dynamic. It’s quite easy to get a grasp of. To get you started you should read Liquid for designers over at Github. Then you can continue by reading our theme documentation to get you up to speed on the specifics for PortfolioDeck. Here is an example on how Liquid looks:

{% if sets | size != 0 %}
  <ul>
  {% for _set in sets %}
    <li><a href="{{ _set | path }}">{{ _set.title }}</a></li>
  {% endfor %}
  </ul>
{% endif %}

This code will print out a list with all your sets, if there are any.

Liquid is an extraction of the templating language used in the hosted e-commerce service Shopify that we have been using for a few client projects. If you want to learn more about Liquid you should check out the Liquid wiki on github.

How do I create my own theme?

  1. Go to your PortfolioDeck admin, http://yourdomain.portfoliodeck.com/admin
  2. Go to “Themes” in the top-right navigation
  3. Click “Create your own theme” in the right column.
  4. Fill in the form.
  5. Edit the different templates. Add your CSS, JS and graphics to your theme assets.
  6. Done! Now click on “Use this theme for the site design” and go look on your new designed site.

If you have any questions or need some help with the templating language, don’t hesitate to drop us a line at support@portfoliodeck.com

Posted by alexisfellenius on September 28, 2009