2019-02-02 16:51:24 +00:00
|
|
|
## TODO
|
2019-02-14 11:36:23 +00:00
|
|
|
* General - fallbacks in case no api response
|
2019-02-12 12:41:44 +00:00
|
|
|
* General - sort things by sort_order
|
2019-02-13 19:58:44 +00:00
|
|
|
* General - page headings etc - use api
|
2019-02-05 16:17:46 +00:00
|
|
|
* mailer
|
2019-02-12 11:45:22 +00:00
|
|
|
* remove testing/dev mode or whatever its called from axios in nuxt.config.js
|
2019-01-30 17:21:10 +00:00
|
|
|
|
2019-01-27 16:06:35 +00:00
|
|
|
## Maybes
|
|
|
|
* gallery page - featured images in same style as on services page with the
|
|
|
|
diagonal divide
|
2019-01-30 21:40:45 +00:00
|
|
|
* image-viewer (and maybe others) - internet explorer compatible blurs.
|
2019-01-27 20:35:24 +00:00
|
|
|
|
|
|
|
## Fixes
|
2019-01-29 13:02:11 +00:00
|
|
|
* refreshing page on gallery and then quickly usingh history buttons breaks it
|
2019-01-30 13:12:36 +00:00
|
|
|
* broken layout at exactly 40em (640px) breakpoint
|
2019-02-12 11:20:22 +00:00
|
|
|
* galleries - click on thumb, click on different gallery, click on original gallery
|
|
|
|
and the thumb list doesn't scroll to correct position to show thumb 0,
|
|
|
|
it is still showing the thumb that was clicked on first
|
2019-02-12 11:45:22 +00:00
|
|
|
|
|
|
|
## Data for Backend
|
|
|
|
```javascript
|
|
|
|
//home
|
|
|
|
bgImages: [
|
|
|
|
'https://marcleopold.isnet.uk/wp-content/uploads/2017/07/slider.jpg',
|
|
|
|
'https://marcleopold.isnet.uk/wp-content/uploads/2017/07/slider-2.jpeg',
|
|
|
|
'https://marcleopold.isnet.uk/wp-content/uploads/2017/07/slider-3.jpeg',
|
|
|
|
'https://marcleopold.isnet.uk/wp-content/uploads/2017/07/4-edit-3.jpg',
|
|
|
|
'https://marcleopold.isnet.uk/wp-content/uploads/2017/07/4-edit.jpg',
|
|
|
|
'https://marcleopold.isnet.uk/wp-content/uploads/2017/07/image-1.png',
|
|
|
|
'https://marcleopold.isnet.uk/wp-content/uploads/2017/07/slider-4.jpeg',
|
|
|
|
],
|
|
|
|
taglines: [
|
|
|
|
'the essence of the image',
|
|
|
|
'an image of the essential',
|
|
|
|
'a solitary instance',
|
|
|
|
'an eternal instance',
|
|
|
|
'a fleeting eternity',
|
|
|
|
'I imagine myself',
|
|
|
|
],
|
2019-02-12 12:18:35 +00:00
|
|
|
|
|
|
|
//services
|
|
|
|
imageUrl: "https://via.placeholder.com/1920x1080",
|
|
|
|
services: [
|
|
|
|
{
|
|
|
|
'heading': 'Portraits',
|
|
|
|
'imageUrl': 'https://marcleopold.isnet.uk/wp-content/uploads/2017/07/services-portraits.jpg',
|
|
|
|
'backgroundImageUrl': 'https://marcleopold.isnet.uk/wp-content/uploads/2017/07/services-portraits.jpg',
|
|
|
|
'html': '<p>Corporate portraits and publicity photos for printed materials, including annual reports and newsletters.</p>',
|
|
|
|
'linkUrl': '/galleries?gallery=0',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'heading': 'Dance',
|
|
|
|
'imageUrl': 'https://marcleopold.isnet.uk/wp-content/uploads/2017/07/services-dance.jpg',
|
|
|
|
'backgroundImageUrl': 'https://marcleopold.isnet.uk/wp-content/uploads/2017/07/services-dance.jpg',
|
|
|
|
'html': '<p>Photography and video production of dancers and performances for print, web, and promotion.</p>',
|
|
|
|
'linkUrl': '/galleries?gallery=1',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'heading': 'Music',
|
|
|
|
'imageUrl': 'https://marcleopold.isnet.uk/wp-content/uploads/2017/07/services-music.jpg',
|
|
|
|
'backgroundImageUrl': 'https://marcleopold.isnet.uk/wp-content/uploads/2017/07/services-music.jpg',
|
|
|
|
'html': '<p>Photography and video of musical performances and portraits for print and the web, CD covers, and publicity photos.</p>',
|
|
|
|
'linkUrl': '/galleries?gallery=2',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'heading': 'Events',
|
|
|
|
'imageUrl': 'https://marcleopold.isnet.uk/wp-content/uploads/2017/07/services-events.jpg',
|
|
|
|
'backgroundImageUrl': 'https://marcleopold.isnet.uk/wp-content/uploads/2017/07/services-events.jpg',
|
|
|
|
'html': '<p>Photography and video production for your corporate, organisational and personal events and celebrations.</p>',
|
|
|
|
'linkUrl': '/galleries?gallery=3',
|
|
|
|
},
|
|
|
|
]
|
2019-02-12 11:45:22 +00:00
|
|
|
```
|