Jump to content

heldercervantes

Members
  • Posts

    389
  • Joined

  • Last visited

  • Days Won

    15

Everything posted by heldercervantes

  1. It's quite simple. I have a "portfolio" page, and a bunch of child pages for each project. Then on the template I just did a foreach cycle to repeat a block of HTML for each project: <?php $projects = $pages->get('/portfolio/'); foreach($projects->children as $project) { echo "<div id=\"{$project->name}\" class=\"page\">"; echo "<h3 class=\"projectTitle\"><span>".$project->monster_label."</span></h3>"; ... } ?> In my site I have to do this on 2 separate locations. One for the slideshow and another further down for the actual content. I have a separate page type for the about block, with its own fields.
  2. @adrianmak, yes it is. I used swiper for the slideshow and built my own way to turn it into a menu of sorts. That way I was able to have deeplinking and make it behave like a multipage sans-pageloads. I also used lazy image loader so all the big images in each project would load only when needed.
  3. Sure. Let me know when you're back in town
  4. Love the idea of the intro phrase doubling as a menu. Nice work
  5. Networking time! Temos que combinar uma cerveja
  6. Thanks for the remarks. I have to say that working with ProcessWire was nothing short of spectacular. I'm mainly a frontend guy, and the API's simplicity is just perfect for me. Got the site running using only php echos and foreach statements, literally coding it amidst conversations with friends and half looking at my screen. So simple and logic. Plus the barebones + modules approach to the CMS ensures a super clean and streamlined product. No posts module that you don't need, no unnecessary fields, just zero clutter.
  7. Hi guys. This is my first project with PW, my personal site and portfolio. Check it out: http://www.heldercervantes.com This is an almost clean PW installation, with only the file type repeater module for all my repeating needs Had an awesome time with PW and will definitely explore it further on future projects.
  8. Hi guys. I'm trying to setup a tab in processwire to list all pages under a specific page. I have a "portfolio" page and under it I create pages for each project. This new tab ideally would just display a page list starting from the portfolio parent. What's the best way to do this? I would also like to add another tab that would jump straight to editing a profile page. Thanks for your help.
×
×
  • Create New...