Right approach for :counter

I have been trying to name some of my resource images using :counter, but hugo throws an error everytime. The code looks like this:

resources:
  • name: s:counter
    src: ‘amys-baking-company.jpg’
    src: ‘Levantis-Italian-Restaurant.jpg’
    src: ‘Mill-Street-Bistro.jpg’
    src: ‘Yannis.jpg’

    What am I doing wrong?

As per the example in the Doc:

resources:
- src: '*specs.pdf'
  title: 'Specification #:counter'
- name: pdf-file-:counter
  src: '**.pdf'

Instead of specifying multiple src parameters, use glob pattern matching like: src: '**.jpg'

Thank you. Now my code looks like:

resources:
  • name: s:counter
    src: ‘**.jpg’

This topic was automatically closed 2 days after the last reply. New replies are no longer allowed.