Skip to content

Commit

Permalink
feat(footer): add licences for footer
Browse files Browse the repository at this point in the history
  • Loading branch information
Vheissu committed Dec 16, 2024
1 parent 2926737 commit fb96909
Showing 1 changed file with 14 additions and 8 deletions.
22 changes: 14 additions & 8 deletions themes/aurelia-theme/layouts/partials/footer.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,21 @@ <h4 class="text-aurelia font-semibold mb-4">{{ .title }}</h4>
{{ end }}
</div>

<!-- Copyright -->
<!-- Copyright and License -->
<div class="pt-8 border-t border-gray-800">
<p class="text-center text-gray-400 text-sm">
Copyright © {{ now.Year }} <a href="https://aurelia.io" class="text-aurelia hover:text-aurelia-light transition-colors">Aurelia.</a>
<span class="block sm:inline">Code licensed under the MIT License. Content licensed under CC0.</span>
</p>
<p class="text-center text-gray-400 text-sm mt-2">
Designed with <span class="text-red-500"></span> by <a href="https://ilikekillnerds.com" class="text-aurelia hover:text-aurelia-light transition-colors" target="_blank">Dwayne</a>
</p>
<div class="text-center text-gray-400 text-sm space-y-2">
<p>
Copyright © {{ now.Year }} <a href="https://aurelia.io" class="text-aurelia hover:text-aurelia-light transition-colors">Aurelia</a>
</p>
<p class="flex items-center justify-center gap-2">
<span><i class="fas fa-code text-aurelia"></i> Code licensed under <a href="https://opensource.org/licenses/MIT" class="text-aurelia hover:text-aurelia-light transition-colors">MIT License</a></span>
<span class="text-gray-600"></span>
<span><i class="fas fa-file-alt text-aurelia"></i> Content licensed under <a href="https://creativecommons.org/publicdomain/zero/1.0/" class="text-aurelia hover:text-aurelia-light transition-colors">CC0</a></span>
</p>
<p>
Designed with <span class="text-red-500"></span> by <a href="https://ilikekillnerds.com" class="text-aurelia hover:text-aurelia-light transition-colors" target="_blank">Dwayne</a>
</p>
</div>
</div>
</div>
</footer>

0 comments on commit fb96909

Please sign in to comment.