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

Need help with a portfolio

Solved by pamtbaau View solution

Started by Bryan Gossuin 6 years ago · 1 replies · 440 views
6 years ago

Hello !
Im using the Ceevee skeleton and I'd like to replace all the photo in the portfolio part with YouTube video. I clearly cant do it with some help and I tried with multiples plugin but nothing work..

Thank for your help

6 years ago Solution

@saku, Have had a look at CeeVee skeleton and created a simple example for showing videos. The look and feel might not be what you want, but at least it shows videos... ;-)

Here are the steps needed:

  • Install plugin devtools if not already:
    $ bin/gpm install devtools
  • Create an inherited theme to prevent loosing changes after CeeVee gets updated:
    $ bin/plugin devtools newtheme
    Answer a few questions and choose 'inheritance' when asked for the type of theme and then choose 'ceevee'
  • Tell Grav to use your theme (let say you named it 'mytheme') in '/user/config/system.yaml':
    YAML
    pages:
    theme: mytheme
    
  • Copy template '/user/themes/ceevee/templates/modular/_portfolio.html.twig' into folder '/user/themes/mytheme/templates/modular/'
  • Comment out lines 9-18
    TWIG
    {# <a href="#modal-{{ loop.index }}" title="">
    ...
    </a> #}
    
  • Comment out lines 24-37:
    TWIG
    {# {% for item in page.header.portfolio %}
    ...
    {% endfor %} #}
    
  • Below line 8 insert the following:
    TWIG
    <video controls="" width="250">
     <source src="{{ page.media[item.video].url}}" type="video/webm">
     Sorry, your browser doesn't support embedded videos.
    </video>
    

    Note: type="video/webm" must match the extension of your videos

  • To file '/user/pages/01.home/_portfolio.md' add the videos to the list inside portfolio.
    TXT
    portfolio:
    - video: flower.webm
    
  • In the browser you should now see something similar to:
    image|430x185
👍 1

Suggested topics

Topic Participants Replies Views Activity
Support · by Water Science, 3 weeks ago
11 170 8 hours ago
Support · by Duc , 24 hours ago
1 45 24 hours ago
Support · by Thomas, 1 week ago
3 116 1 day ago
Support · by Anna, 4 days ago
2 111 2 days ago
Support · by Justin Young, 2 days ago
1 90 2 days ago