Skip to content

Headings in portfolio page #354

Closed Answered by sylhare
ShweataNHegde asked this question in Q&A
Discussion options

You must be logged in to vote

So it's not possible now, maybe I'll think into making it a feature.
To customize it though it's pretty simple, you just need to update _includes/portfolio.html

With something like:

<div class="portfolio-grid">
    {% for item in site.portfolio %}
    <div class="portfolio-cell">
        <a class="portfolio-link" data-keyboard="true" href="{{ item.url | relative_url }}">
            <div class="caption" title="{{ item.title }}">
                <div class="caption-content">
                    <i>{{ item.title }}</i>
                </div>
            </div>
            <img alt="" class="" src="{{ item.img | relative_url }}">
        </a>
    </div>
    {% endfor %}
</div>

The {{ item.ti…

Replies: 5 comments

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Answer selected by sylhare
Comment options

You must be logged in to vote
0 replies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
3 participants
Converted from issue

This discussion was converted from issue #330 on June 09, 2022 18:53.