Coder Social home page Coder Social logo

Comments (5)

guinslym avatar guinslym commented on May 27, 2024
{{ define "head-custom" }}
  {{ partial "gallerydeluxe/head.html" . }}
{{ end }}

from galleriesdeluxe.

guinslym avatar guinslym commented on May 27, 2024

.
├── archetypes
│   └── default.md
├── assets
│   └── scss
│       └── galleriesdeluxe
│           └── vars-custom.scss
├── content
│   ├── _index.md
│   ├── about
│   │   └── index.md
│   ├── first-post.md
│   └── galleries
│       ├── _index.md
│       ├── g1
│       │   ├── National Archaeological Museum of Athens 2022-32.jpg
│       │   ├── Statue National Archaeological Museum of Athens 2022-1.jpg
│       │   ├── Statue National Archaeological Museum of Athens 2022-18.jpg
│       │   ├── Statue National Archaeological Museum of Athens 2022-19.jpg
│       │   ├── Statue National Archaeological Museum of Athens 2022-3.jpg
│       │   ├── Statue National Archaeological Museum of Athens 2022-9.jpg
│       │   └── index.md
│       ├── g2
│       │   ├── -Chevrolet Corvette 1981 Amcartreff Sogndal 2022.jpg
│       │   ├── Amcartreff Sogndal 2022-16.jpg
│       │   ├── Amcartreff Sogndal 2022-3.jpg
│       │   ├── Amcartreff Sogndal 2022-31.jpg
│       │   ├── Amcartreff Sogndal 2022-4.jpg
│       │   ├── Amcartreff Sogndal 2022-6.jpg
│       │   ├── Plymouth Barracuda 1967 Amcartreff Sogndal 2022.jpg
│       │   ├── featured.jpg
│       │   └── index.md
│       └── g3
│           ├── DSC_3701.jpg
│           ├── DSC_3744.jpg
│           ├── DSC_3803.jpg
│           ├── DSC_3804.jpg
│           ├── DSC_3815.jpg
│           ├── DSC_3862.jpg
│           ├── DSC_3865.jpg
│           ├── Zoo Ketil Stokkan Lægreidfest 2022-2.jpg
│           └── index.md
├── data
├── hugo.toml
├── i18n
├── layouts
├── public
│   ├── categories
│   │   ├── index.html
│   │   └── index.xml
│   ├── common-partials
│   │   └── opengraph
│   │       ├── opengraph-base_hufcdac0bd7b76f39aa6e3fa34ddd2f4bb_168899_filter_10463222615754917650.png
│   │       ├── opengraph-base_hufcdac0bd7b76f39aa6e3fa34ddd2f4bb_168899_filter_10986563924894321796.png
│   │       └── opengraph-base_hufcdac0bd7b76f39aa6e3fa34ddd2f4bb_168899_filter_1932033167306504676.png
│   ├── favicon.svg
│   ├── index.html
│   ├── index.xml
│   ├── js
│   │   └── galleriesdeluxe
│   │       └── index.f2979a93a325fecf9605263bd141398a311c8e23388ed7dcff74f92f7e632866.js
│   ├── scss
│   │   └── galleriesdeluxe
│   │       ├── styles.3a30f8735dd5c69638e1b8979d9819eb002bfb41e1cc6961c5a25a3fe27c56e8.css
│   │       └── styles.css.map
│   ├── sitemap.xml
│   └── tags
│       ├── index.html
│       └── index.xml
├── resources
│   └── _gen
│       ├── assets
│       │   └── scss
│       │       └── scss
│       └── images
│           ├── opengraph-base_hufcdac0bd7b76f39aa6e3fa34ddd2f4bb_168899_filter_10463222615754917650.png
│           ├── opengraph-base_hufcdac0bd7b76f39aa6e3fa34ddd2f4bb_168899_filter_10986563924894321796.png
│           └── opengraph-base_hufcdac0bd7b76f39aa6e3fa34ddd2f4bb_168899_filter_1932033167306504676.png
├── static
└── themes
    ├── common-partials
    │   ├── README.md
    │   ├── assets
    │   │   └── common-partials
    │   │       └── opengraph
    │   ├── go.mod
    │   ├── hugo.toml
    │   └── layouts
    │       └── partials
    │           └── common-partials
    └── gallerydeluxe
        ├── LICENSE
        ├── README.md
        ├── assets
        │   ├── common-partials
        │   │   └── opengraph
        │   ├── js
        │   │   └── galleriesdeluxe
        │   ├── jsconfig.json
        │   └── scss
        │       └── galleriesdeluxe
        ├── common-partials
        │   ├── README.md
        │   ├── assets
        │   │   └── common-partials
        │   ├── go.mod
        │   ├── hugo.toml
        │   └── layouts
        │       └── partials
        ├── exampleSite
        │   ├── assets
        │   │   └── scss
        │   ├── content
        │   │   ├── _index.md
        │   │   ├── about
        │   │   └── galleries
        │   ├── go.mod
        │   ├── go.sum
        │   └── hugo.toml
        ├── go.mod
        ├── go.sum
        ├── hugo-ci.sh
        ├── hugo.toml
        ├── i18n
        │   └── en.toml
        ├── images
        │   ├── screenshot.jpg
        │   └── tn.jpg
        ├── layouts
        │   ├── _default
        │   │   ├── about.html
        │   │   ├── baseof.html
        │   │   ├── head.html
        │   │   ├── list.html
        │   │   ├── single.html
        │   │   └── term.html
        │   └── partials
        │       └── galleriesdeluxe
        ├── netlify.toml
        ├── static
        │   └── favicon.svg
        └── theme.toml

from galleriesdeluxe.

guinslym avatar guinslym commented on May 27, 2024

When I remove the folder Gallleries I don<t have issue

from galleriesdeluxe.

guinslym avatar guinslym commented on May 27, 2024

When I create a index.md inside the g1 folder I am getting an error
Screenshot 2024-02-19 at 1 41 56 PM

from galleriesdeluxe.

bep avatar bep commented on May 27, 2024

See #8

from galleriesdeluxe.

Related Issues (6)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.