Skip to content
Grav 2.0 is officially stable. Read the announcement →
Archive

How to get single image from config file

Started by Muut Archive 9 years ago · 4 replies · 519 views
9 years ago

So, I'm just getting started with Grav. Everything seems fairly simple and straightforward. I've got a custom config at user>config>themes>details.yaml and have setup a blueprint at user>blueprints>config>details.yaml. Everthing seems to be working and I'm able to use this to upload a sitewide logo image:

YAML
name: 'Hartwell Baptist Church'
address: '8732 North Cumbria Street, Golden, CO, 80401'
email: h[email protected]
phone: 555-123-1111
logo:
  user/themes/sitewide-assets/logo-2x.png:
    name: logo-2x.png
    type: image/png
    size: 45966
    path: user/themes/sitewide-assets/logo-2x.png

The problem I'm running into is accessing it via Twig. In liquid I'd just do this

HTML
<img src="{{config.details.logo[0].path}}" alt="{{config.details.name}}" />

But that is getting me nowhere. When I try {{config.details.logo}} it throws an error?

What am I missing? I've seen similar threads on here but they didn't seem to be trying to do the same thing. (They seem to be trying to get multiple images where I just want to add one.)

9 years ago

May be you should specify something like this:

TWIG
{{ ...logo.html }}

And why two points after the url?

9 years ago

I tried just using {{config.details.logo.html}} with no success.
And I don't understand the question "Why two points after the URL?"
Thanks for the help. I appreciate it.

9 years ago

As I examined the documentation, the output image title and description, you should create [image.name].yaml where you will see the title and description.

9 years ago

A better solution is to drop your logo image in your theme, or even in a location such as user/images/ and then you can access the logo easily via:

TWIG
<img src="{{ url('image://my-logo.png') }}" />

You can also use a folder such as user/media/ and access that with url('user://media/my-logo.png')

Suggested topics

Topic Participants Replies Views Activity
Archive · by Deleted User, 9 years ago
0 1349 9 years ago
Archive · by Muut Archive, 9 years ago
2 934 9 years ago
Archive · by Muut Archive, 9 years ago
2 4060 9 years ago
Archive · by Muut Archive, 9 years ago
1 2946 9 years ago
Archive · by Muut Archive, 9 years ago
3 1118 9 years ago