Browse Source

modified copyright

tags/v1.0.0
somrat 4 years ago
parent
commit
f8047590d8
4 changed files with 6 additions and 8 deletions
  1. 3
    1
      exampleSite/config.toml
  2. 1
    3
      exampleSite/i18n/en.yaml
  3. 1
    3
      exampleSite/i18n/fr.yaml
  4. 1
    1
      layouts/partials/footer.html

+ 3
- 1
exampleSite/config.toml View File

@@ -139,6 +139,7 @@ languageCode = "en-us"
contentDir = "content/english"
weight = 1
home = "Home"
copyright = "copyright © 2019 [gethugothemes](https://gethugothemes.com) all right reserved"

################################ France Language ########################
[Languages.fr]
@@ -146,4 +147,5 @@ languageName = "Fr"
languageCode = "fr-fr"
contentDir = "content/french"
weight = 2
home = "Accueil"
home = "Accueil"
copyright = "copyright et copie; 2019 [gethugothemes] (https://gethugothemes.com) tous droits réservés"

+ 1
- 3
exampleSite/i18n/en.yaml View File

@@ -13,6 +13,4 @@
- id: submit
translation: Submit
- id: all
translation: All
- id: copyright
translation: copyright © 2019 [gethugothemes](https://gethugothemes.com) all right reserved
translation: All

+ 1
- 3
exampleSite/i18n/fr.yaml View File

@@ -13,6 +13,4 @@
- id: submit
translation: Soumettre
- id: all
translation: All
- id: copyright
translation: copyright et copie; 2019 [gethugothemes] (https://gethugothemes.com) tous droits réservés
translation: All

+ 1
- 1
layouts/partials/footer.html View File

@@ -19,7 +19,7 @@
<img src="{{ .Site.Params.logo | absURL }}" alt="{{ .Site.Title }}" />
</a>
<br>
<p>{{ i18n "copyright" | markdownify }}</p>
<p>{{ .Site.Params.copyright | markdownify }}</p>
</div>
</div>
</div>

Loading…
Cancel
Save