Post information date renders <span title=‘2024-01-03 00:00:00 +0000 UTC’>January 3, 2024</span>

Here is my config.yaml

baseURL: 'https://www.fabiano.law/'
languageCode: en-us
timeZone: Europe/Rome
DefaultContentLanguage: en
defaultContentLanguageInSubdir: 'true'
title: SLF
paginate: 1
theme:
  - PaperMod
  - matomo
  - osm
enableRobotsTXT: true
buildDrafts: false
buildFuture: false
buildExpired: false
enableEmoji: true
params:
  matomo:
    url: 'https://matomo.nicfab.eu'
    id: 2
    track:
      button: >-
        1. [EN]: **Allow** tracking (or choose 2) - [IT]: **Consento** al
        tracking (o scegli 2)
      message: >-
        **[EN] Confirmation**: You **allowed** tracking - **[IT] Conferma:**
        **Hai consentito** al tracking
    block:
      button: '2. [EN]: **Disallow** tracking - [IT]: **Non consento** al tracking'
      message: >-
        **[EN] Confirmation**: You are **not** tracked. - **[IT] Conferma:** I
        dati di sessione **non** sono raccolti.
  env: production
  title: SLF
  name: ''
  description: SL Fabiano
  keywords:
    - Blog
    - Privacy
    - Digitaltech
  author: Nicola Fabiano
  images: static/images
  DateFormat: 2 January 2006
  displayFullLangName: true
  defaultTheme: light
  disableThemeToggle: true
  ShowReadingTime: true
  ShowShareButtons: true
  ShowPostNavLinks: true
  ShowBreadCrumbs: true
  ShowCodeCopyButtons: true
  ShowFullTextinRSS: true
  disableSpecial1stPost: false
  disableScrollToTop: false
  comments: true
  hidemeta: false
  hideSummary: false
  ShowToc: true
  tocopen: true
  enableInlineShortcodes: true
  assets:
    favicon: favicon.ico
    favicon16x16: favicon-16x16.png
    favicon32x32: favicon-32x32.png
    apple_touch_icon: apple-touch-icon.png
    safari_pinned_tab: safari-pinned-tab.svg
  label:
    text: SLF
    icon: /images/slf.png
    iconHeight: 90
  homeInfoParams:
    Title: ''
    Content: ''
  socialIcons:
    - name: twitter
      url: 'https://twitter.com/slfabiano'
    - name: Facebook
      url: 'https://facebook.com/studiolegalefabiano'
    - name: telegram
      url: 'https://t.me/nicfabnews'
    - name: Linkedin
      url: 'https://www.linkedin.com/company/studio-legale-fabiano'
  cover:
    hidden: false
    hiddenInList: true
    hiddenInSingle: true
  fuseOpts:
    isCaseSensitive: false
    shouldSort: true
    location: 0
    distance: 1000
    threshold: 0.4
    minMatchCharLength: 0
    keys:
      - title
      - permalink
      - summary
      - content
frontmatter:
  date:
    - date
    - publishDate
    - lastmod
  expiryDate:
    - expiryDate
  lastmod:
    - ':git'
    - lastmod
    - date
    - publishDate
  publishDate:
    - publishDate
    - date
    - ':default'
author:
  name: ''
languages:
  en:
    contentDir: content/en/
    title: SLF
    languageName: ':gb: EN'
    weight: 1
    menu:
      main:
        - identifier: home
          name: Home
          pageref: /
          weight: 1
        - identifier: about
          name: About
          pageref: /about
          weight: 2
        - identifier: Academy
          name: Academy
          pageref: /academy
          weight: 3
        - identifier: Video
          name: Video
          pageref: /video
          weight: 5
        - identifier: News
          name: News
          pageref: /news
          weight: 6
        - identifier: Contacts
          name: Contacts
          pageref: /contacts
          weight: 7
        - identifier: blog
          name: Blog
          url: 'https://notes.nicfab.eu'
          weight: 8
        - identifier: privacy
          name: Privacy
          pageref: /privacy-policy
          weight: 9
        - identifier: search
          name: Search
          pageref: /search
          weight: 10
  it:
    contentDir: content/it/
    title: SLF
    languageName: ':it: IT'
    weight: 2
    menu:
      main:
        - name: Home
          pageref: /
          weight: 1
        - name: About
          pageref: /about.it
          weight: 2
        - identifier: Academy
          name: Academy
          pageref: /academy
          weight: 3
        - identifier: Video
          name: Video
          pageref: /video
          weight: 5
        - identifier: News
          name: News
          pageref: /news
          weight: 6
        - identifier: Contatti
          name: Contatti
          pageref: /contacts.it
          weight: 7
        - name: Blog
          url: 'https://notes.nicfab.eu'
          weight: 8
        - name: Privacy
          pageref: /privacy-policy.it
          weight: 9
        - name: Cerca
          pageref: /search.it
          weight: 10
minify:
  disableXML: true
  minifyOutput: true
menu:
  main:
    - identifier: categories
      name: categories
      url: /categories/
      weight: 10
outputs:
  home:
    - HTML
    - RSS
    - JSON
privacy:
  disqus:
    disable: true
  googleAnalytics:
    anonymizeIP: true
    disable: true
    respectDoNotTrack: true
    useSessionStorage: true
  instagram:
    disable: true
    simple: true
  twitter:
    disable: false
    enableDNT: false
    simple: false
  vimeo:
    disable: false
    enableDNT: false
    simple: false
  youtube:
    disable: true
    privacyEnhanced: true
markup:
  goldmark:
    extensions:
      definitionList: true
      footnote: true
      linkify: true
      strikethrough: true
      table: true
      taskList: true
      typographer: true
    parser:
      autoHeadingID: true
      autoHeadingIDType: github
      attribute:
        block: false
        title: true
    renderer:
      hardWraps: true
      unsafe: true
      xhtml: false
  highlight:
    anchorLineNos: false
    codeFences: true
    guessSyntax: false
    hl_Lines: ''
    lineAnchors: ''
    lineNoStart: 1
    lineNos: false
    lineNumbersInTable: true
    noClasses: true
    style: monokai
    tabWidth: 4
taxonomies:
  category: categories
  tag: tags
  series: series

The above is wrong. The theme is expecting an array of image paths, not a path to a directory of images.

Ok, what should be the correct value?
images?

You need to read the theme’s documentation, or look at its example site:

If you don’t use this feature, comment out the line in your site configuration.

1 Like

@jmooring Thank you!
I commented on that feature.
I was going crazy…

However, in the past (previous version), it was necessary to put the image folder.

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