-
-
Notifications
You must be signed in to change notification settings - Fork 569
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Port to Boostrap 4 #246
base: master_v2
Are you sure you want to change the base?
Port to Boostrap 4 #246
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -127,11 +127,8 @@ paginate = 10 | |
# Enable or disable top bar with social icons | ||
[params.topbar] | ||
enable = true | ||
text = """<p class="hidden-sm hidden-xs">Contact us on +420 777 555 333 or [email protected].</p> | ||
<p class="hidden-md hidden-lg"><a href="#" data-animate-hover="pulse"><i class="fas fa-phone"></i></a> | ||
<a href="#" data-animate-hover="pulse"><i class="fas fa-envelope"></i></a> | ||
</p> | ||
""" | ||
text = """<p>Contact us on +420 777 555 333 or [email protected].</p> | ||
""" | ||
|
||
# Enable and disable widgets for the right sidebar | ||
[params.widgets] | ||
|
@@ -143,35 +140,35 @@ paginate = 10 | |
enable = true | ||
# All carousel items are defined in their own files. You can find example items | ||
# at 'exampleSite/data/carousel'. | ||
# For more informtion take a look at the README. | ||
# For more information take a look at the README. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @varnerac I would appreciate misspelling words to be in another PR directly to master branch. |
||
|
||
[params.features] | ||
enable = true | ||
# All features are defined in their own files. You can find example items | ||
# at 'exampleSite/data/features'. | ||
# For more informtion take a look at the README. | ||
# For more information take a look at the README. | ||
|
||
[params.testimonials] | ||
enable = true | ||
# All testimonials are defined in their own files. You can find example items | ||
# at 'exampleSite/data/testimonials'. | ||
# For more informtion take a look at the README. | ||
# For more information take a look at the README. | ||
title = "Testimonials" | ||
subtitle = "We have worked with many clients and we always like to hear they come out from the cooperation happy and satisfied. Have a look what our clients said about us." | ||
|
||
[params.see_more] | ||
enable = true | ||
icon = "far fa-file-alt" | ||
icon = "far fa-file-code" | ||
title = "Do you want to see more?" | ||
subtitle = "We have prepared for you more than 40 different HTML pages, including 5 variations of homepage." | ||
link_url = "#" | ||
link_text = "Check other homepages" | ||
link_text = "See another homepage" | ||
|
||
[params.clients] | ||
enable = true | ||
# All clients are defined in their own files. You can find example items | ||
# at 'exampleSite/data/clients'. | ||
# For more informtion take a look at the README. | ||
# For more information take a look at the README. | ||
title = "Our Clients" | ||
subtitle = "" | ||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,33 @@ | ||
{{ if isset .Site.Params "carousel" }} | ||
{{ if .Site.Params.carousel.enable }} | ||
{{ if gt (len .Site.Data.carousel) 0 }} | ||
<section> | ||
<div class="home-carousel"> | ||
<div class="dark-mask"></div> | ||
<div class="container"> | ||
<div class="homepage owl-carousel"> | ||
{{ range sort .Site.Data.carousel "weight" }} | ||
<div class="item"> | ||
<div class="row"> | ||
<div class="col-sm-5 right"> | ||
<h1>{{ .title }}</h1> | ||
{{ .description | safeHTML }} | ||
</div> | ||
<div class="col-sm-7"> | ||
<img class="img-responsive" src="{{ .image }}" alt=""> | ||
<!-- carousel start --> | ||
<section style="background: url('../img/photogrid.jpg') center center repeat; background-size: cover;" class="bar background-white relative-positioned"> | ||
<div class="container"> | ||
<div class="home-carousel"> | ||
<div class="dark-mask mask-primary"></div> | ||
<div class="container"> | ||
<div class="homepage owl-carousel owl-loaded owl-drag"> | ||
{{ range sort .Site.Data.carousel "weight" }} | ||
<div class="item"> | ||
<div class="row"> | ||
<div class="col-sm-5 right"> | ||
<h1>{{ .title }}</h1> | ||
{{ .description | safeHTML }} | ||
</div> | ||
<div class="col-sm-7"> | ||
<img class="img-responsive" src="{{ .image }}" alt=""> | ||
</div> | ||
</div> | ||
</div> | ||
{{ end }} | ||
</div> | ||
{{ end }} | ||
<!-- /.project owl-slider --> | ||
</div> | ||
<!-- /.project owl-slider --> | ||
</div> | ||
</div> | ||
</section> | ||
<!-- carousel start --> | ||
{{ end }} | ||
{{ end }} | ||
{{ end }} |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
<div class="row"> | ||
<div class="col-md-8"> | ||
|
||
<section> | ||
<section class="bar"> | ||
|
||
{{ .Content }} | ||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,13 +13,13 @@ | |
{{ with $element.url }} | ||
<a href="{{ $element.url }}"> | ||
{{ end }} | ||
<div class="icon"> | ||
<div class="icon-outlined"> | ||
<i class="{{ .icon }}"></i> | ||
</div> | ||
{{ with $element.url }} | ||
</a> | ||
{{ end }} | ||
<h3>{{ $element.name | markdownify }}</h3> | ||
<h3 class="h4">{{ $element.name | markdownify }}</h3> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. it sounds weird h3 and class h4. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yeah. I just ripped this off from the Boostrapious live demo/raw distro. We download the raw distro from them and pay for a non-attribution license. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I leave the comment opened to remember this on the final check |
||
<p>{{ $element.description | markdownify }}</p> | ||
</div> | ||
</div> | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@ line 85 you should update the comment about the default theme color (now turquoise instead of light-blue)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done