marcantondahmen / automad

A flat-file content management system and template engine
https://automad.org
MIT License
660 stars 41 forks source link

[QUESTION] placement or removal of copyright footer #94

Closed jmcouffin closed 6 months ago

jmcouffin commented 6 months ago

Hi Anton, Nice work. Revitron and Automad are pretty cool projects.

Quick quesiton, how do you control this image

~both the bottom pages links on the left and~ the (c) 2024 copyright notice on the right?

marcantondahmen commented 6 months ago

Hi, the copyright notice is generated by the theme. In this case I guess it is the default one. There is no setting to disable this. However it is quite straight forward to get rid of it by just deleting it from the template.

jmcouffin commented 6 months ago

Starting to get the hang of it

in /automad/packages/standard/templates/post.php

I can comment

<li class="uk-text-right uk-text-left-small">
    <a href="/">
        &copy; @{ :now | dateFormat('Y') } @{ sitename }
    </a>
</li>

Thanks for your answer.