journal_portfolio.qsrc 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. # journal_portfolio
  2. if $args[0] = '':
  3. '<center><h1>Here are all your best photos. You can click on them for a full view.</h1></center>'
  4. *nl
  5. *nl
  6. i = 1
  7. :looplocations
  8. if portfolio_locations[i] = 1:
  9. *p '<a href="exec:gt ''journal_portfolio'', ''image_view'', ''locations'', <<i>>"><img src="images/pc/activities/photography/foto/locations/<<i>>.jpg" height="250" /></a>'
  10. end
  11. i += 1
  12. if i <= ARRSIZE('portfolio_locations'):jump 'looplocations'
  13. *nl
  14. i = 1
  15. :looppeople
  16. if portfolio_people[i] = 1:
  17. *p '<a href="exec:gt ''journal_portfolio'', ''image_view'', ''people'', <<i>>"><img src="images/pc/activities/photography/foto/people/<<i>>.jpg" height="250" /></a>'
  18. end
  19. i += 1
  20. if i <= ARRSIZE('portfolio_people'):jump 'looppeople'
  21. act 'Return': gt 'journal', 'records'
  22. act 'Put your journal down': gt $menu_loc, $menu_arg
  23. end
  24. if $args[0] = 'image_view':
  25. '<center><img src="images/pc/activities/photography/foto/<<$ARGS[1]>>/<<ARGS[2]>>.jpg"></center>'
  26. act 'Return': gt 'journal_portfolio'
  27. end
  28. --- journal_portfolio ---------------------------------