Browse Source

Merge branch 'master' of https://github.com/themefisher/meghna-hugo

tags/v1.0.0
somrat 4 years ago
parent
commit
87ec167c84

+ 4
- 0
.gitpod.yml View File

tasks:
- init: echo "Replace me with a build script for the project."
command: echo "Replace me with something that should run on every start, or just
remove me entirely."

+ 1
- 1
README.md View File

$ hugo server --themesDir ../.. $ hugo server --themesDir ../..
``` ```


[Full Documentation](http://demo.themefisher.com/meghna-hugo/en/blog/installation/).
[Full Documentation](https://documentation.themefisher.com/docs/meghna-hugo/hugo-installation/).


## Reporting Issues ## Reporting Issues



+ 10
- 10
exampleSite/config.toml View File



############################# Navigation ################################## ############################# Navigation ##################################
[[menu.main]] [[menu.main]]
name = "About Us"
name = "about"
URL = "about" URL = "about"
weight = 1 weight = 1


[[menu.main]] [[menu.main]]
name = "Service"
name = "services"
URL = "services" URL = "services"
weight = 2 weight = 2


[[menu.main]] [[menu.main]]
name = "Portfolio"
name = "portfolio"
URL = "portfolio" URL = "portfolio"
weight = 3 weight = 3


[[menu.main]] [[menu.main]]
name = "Team"
name = "team"
URL = "team" URL = "team"
weight = 4 weight = 4


[[menu.main]] [[menu.main]]
name = "Pricing"
name = "pricing"
URL = "pricing" URL = "pricing"
weight = 5 weight = 5


[[menu.main]] [[menu.main]]
name = "Blog"
name = "blog"
URL = "blog" URL = "blog"
weight = 6 weight = 6


[[menu.main]] [[menu.main]]
name = "Contact"
name = "contact"
URL = "contact" URL = "contact"
weight = 7 weight = 7


# Meta data # Meta data
description = "Responsive Multipurpose Parallax HTML5 Template" description = "Responsive Multipurpose Parallax HTML5 Template"
author = "Themefisher" author = "Themefisher"
# Google Analitycs
google_analitycs_id = "" # Your ID
# Google Analytics
google_analytics_id = "" # Your ID
# post share # post share
post_share = true post_share = true


contentDir = "content/french" contentDir = "content/french"
weight = 2 weight = 2
home = "Accueil" home = "Accueil"
copyright = "copyright et copie; 2019 [gethugothemes] (https://gethugothemes.com) tous droits réservés"
copyright = "copyright et copie; 2019 [gethugothemes] (https://gethugothemes.com) tous droits réservés"

+ 2
- 2
exampleSite/data/en/skill.yml View File

percent : 95% percent : 95%
# skill item loop # skill item loop
- name : Andriod Development
percent : 75%
- name : Android Development
percent : 75%

+ 2
- 2
exampleSite/data/fr/skill.yml View File

percent : 95% percent : 95%
# skill item loop # skill item loop
- name : Andriod Development
percent : 75%
- name : Android Development
percent : 75%

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

- id: submit - id: submit
translation: Submit translation: Submit
- id: all - id: all
translation: All
translation: All
- id: about
translation: About Us
- id: services
translation: Service
- id: portfolio
translation: Portfolio
- id: team
translation: Team
- id: pricing
translation: Pricing
- id: blog
translation: Blog
- id: contact
translation: Contact

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

- id: submit - id: submit
translation: Soumettre translation: Soumettre
- id: all - id: all
translation: All
translation: All
- id: about
translation: À propos
- id: services
translation: Services
- id: portfolio
translation: Portfolio
- id: team
translation: Équipe
- id: pricing
translation: Tarification
- id: blog
translation: Blog
- id: contact
translation: Contact

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

{{ $script := resources.Get "js/script.js" | minify}} {{ $script := resources.Get "js/script.js" | minify}}
<script src="{{ $script.Permalink }}"></script> <script src="{{ $script.Permalink }}"></script>


{{ "<!-- google analitycs -->" | safeHTML }}
{{ with .Site.Params.google_analitycs_id }}
{{ "<!-- google analytics -->" | safeHTML }}
{{ with .Site.Params.google_analytics_id }}
<script> <script>
(function (i, s, o, g, r, a, m) { (function (i, s, o, g, r, a, m) {
i['GoogleAnalyticsObject'] = r; i['GoogleAnalyticsObject'] = r;

+ 4
- 4
layouts/partials/navigation.html View File

<li class="nav-item"><a class="nav-link" href="#body">{{ .Site.Params.home }}</a></li> <li class="nav-item"><a class="nav-link" href="#body">{{ .Site.Params.home }}</a></li>
{{ if .IsHome }} {{ if .IsHome }}
{{ range .Site.Menus.main }} {{ range .Site.Menus.main }}
<li class="nav-item"><a class="nav-link" href="#{{ .URL }}">{{ .Name }}</a></li>
<li class="nav-item"><a class="nav-link" href="#{{ .URL }}">{{ i18n .Name }}</a></li>
{{ end }} {{ end }}


{{ else }} {{ else }}


{{ range .Site.Menus.main }} {{ range .Site.Menus.main }}
<li class="nav-item"><a class="nav-link" href="{{ $.Site.BaseURL | relLangURL }}#{{ .URL }}">{{ .Name }}</a>
<li class="nav-item"><a class="nav-link" href="{{ $.Site.BaseURL | relLangURL }}#{{ .URL }}">{{ i18n .Name }}</a>
</li> </li>
{{ end }} {{ end }}
{{ end }} {{ end }}


{{ range .Site.Menus.static }} {{ range .Site.Menus.static }}
<li class="nav-item"><a class="nav-link" target="_blank" href="{{ .URL }}">{{ .Name }}</a>
<li class="nav-item"><a class="nav-link" target="_blank" href="{{ .URL }}">{{ i18n .Name }}</a>
</li> </li>
{{ end }} {{ end }}
</div> </div>
</nav> </nav>
</div> </div>
</section>
</section>

+ 1
- 2
static/plugins/bootstrap/bootstrap.min.css
File diff suppressed because it is too large
View File


Loading…
Cancel
Save