-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3ca3787
commit 5e2eeda
Showing
10 changed files
with
135 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,21 @@ | ||
title: 33 Tips and Tricks to Speed up your workflow . | ||
description: Get this higly visual, 15 pages PDF Guide On Qt Creator for FREE! | ||
image: /assets/img/qt_creator_guide.webp | ||
button: GET IT NOW! | ||
link: https://mailchi.mp/a7c4442d916d/qt-creator-shortcuts | ||
cardlist: | ||
- title: 33 Tips and Tricks to Speed up your workflow . | ||
subtitle: Get this higly visual, 15 pages PDF Guide On Qt Creator for FREE! | ||
image: /assets/img/qt_creator_guide.webp | ||
button: GET IT NOW! | ||
link: https://mailchi.mp/a7c4442d916d/qt-creator-shortcuts | ||
- title: Example Book 2. | ||
subtitle: Description example book 2 | ||
image: /assets/img/bookis.webp | ||
button: GET IT NOW! | ||
link: https://mailchi.mp/a7c4442d916d/qt-creator-shortcuts | ||
- title: Example Book 3. | ||
subtitle: Description example book 3 you can write anything in here... | ||
image: /assets/img/qt_creator_guide.webp | ||
button: GET IT NOW! | ||
link: https://mailchi.mp/a7c4442d916d/qt-creator-shortcuts | ||
|
||
display_on_blog_list: 1 | ||
|
||
display_on_blog_page: 2 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,21 @@ | ||
title: High Quality Online Courses on Qt,C++, Qt Quick/QML and More. | ||
description: Qt has two main mechanisms to allow developers to react to things that happen in your application. One of these, which is more common is Signals and Slots. | ||
image: /assets/img/qt_courses.webp | ||
button: Learn More | ||
link: /courses | ||
cardlist: | ||
- title: High Quality Online Courses on Qt,C++, Qt Quick/QML and More. | ||
subtitle: Qt has two main mechanisms to allow developers to react to things that happen in your application. One of these, which is more common is Signals and Slots. | ||
image: /assets/img/qt_courses.webp | ||
button: Learn More | ||
link: /courses | ||
- title: Courses video 2 | ||
subtitle: This is courses video 2 description or subtitle just write in here for courses information. | ||
image: /assets/courses/image/qt_qml.png | ||
button: Call to Action | ||
link: /courses | ||
- title: Courses video 3 | ||
subtitle: This is courses video 3 description or subtitle just write in here for courses information. | ||
image: /assets/img/qt_quick_advanced.png | ||
button: Take Courses | ||
link: /courses | ||
|
||
|
||
display_on_blog_list: 1 | ||
|
||
display_on_blog_page: 2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
<div class="col-md-3 p-3"> | ||
|
||
|
||
<div class="row"> | ||
|
||
{% include widget/bookcardblog.html %} | ||
|
||
<div href="{{page.url}}" class="mb-3 shadow-sm mt-3"> | ||
<div class="p-3 bg-greens"> | ||
<h3 class="p-3"><img class="img-fluid p-1 bg-white rounded-circle" | ||
width="60" height="60" src="/assets/img/tag.svg"/> | ||
<strong><a href="{{page.url}}" class="text-white">Tags</a></strong></h3> | ||
</div> | ||
<div class="p-3"> | ||
{% for tag in site.tags %} | ||
<p><a href="{{site.url}}/tag.html#{{tag[0]}}">{{ tag[0] }} <span class="float-end">({{ tag[1].size }}) </span></a> | ||
<br/> | ||
{% endfor %} | ||
</p> | ||
</div> | ||
</div> | ||
|
||
{% include widget/coursescardblog.html %} | ||
|
||
|
||
</div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,17 @@ | ||
{% if page.bookcard == true %} | ||
{% for ca in site.data.cardbook.cardlist | limit:{{site.data.cardbook.display_on_blog_list}} %} | ||
<div class="zoom mb-3 mt-3 shadow-sm border-success border-top"> | ||
<h3 class="p-3 lead"><strong><a href="{{site.data.cardbook.link}}">{{site.data.cardbook.title}}</a></strong></h3> | ||
<img class="img-fluid p-1 lazyload" loading="lazy" width="100%" height="100%" data-src="{{site.data.cardbook.image}}"/> | ||
<h3 class="p-3 lead"> | ||
<strong><a href="{{ca.link}}">{{ca.title}}</a></strong> | ||
</h3> | ||
<img class="img-fluid p-1 lazyload" loading="lazy" | ||
width="100%" height="100%" data-src="{{ca.image}}"/> | ||
<p class="text-dark p-1 mt-3"> | ||
{{site.data.cardbook.description}} | ||
{{ca.subtitle}} | ||
</p> | ||
<p><a href="{{site.data.cardbook.link}}" | ||
<p><a href="{{ca.link}}" | ||
class="btn col-12 mt-3 mb-3 bg-green btn-outline-success" | ||
style="border-radius:0;">{{site.data.cardbook.button}}</a></p> | ||
style="border-radius:0;">{{ca.button}}</a></p> | ||
</div> | ||
{% endfor %} | ||
{% endif %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
{% if page.bookcard == true %} | ||
{% for ca in site.data.cardbook.cardlist | limit:{{site.data.cardbook.display_on_blog_page}} %} | ||
<div class="zoom mb-3 mt-3 shadow-sm border-success border-top"> | ||
<h3 class="p-3 lead"> | ||
<strong><a href="{{ca.link}}">{{ca.title}}</a></strong> | ||
</h3> | ||
<img class="img-fluid p-1 lazyload" loading="lazy" | ||
width="100%" height="100%" data-src="{{ca.image}}"/> | ||
<p class="text-dark p-1 mt-3"> | ||
{{ca.subtitle}} | ||
</p> | ||
<p><a href="{{ca.link}}" | ||
class="btn col-12 mt-3 mb-3 bg-green btn-outline-success" | ||
style="border-radius:0;">{{ca.button}}</a></p> | ||
</div> | ||
{% endfor %} | ||
{% endif %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,13 @@ | ||
{% if page.coursescard == true %} | ||
{% for cv in site.data.cardcourses.cardlist | limit:{{site.data.cardbook.display_on_blog_list}} %} | ||
<div class="zoom mb-3 shadow-sm border-success border-top"> | ||
<h3 class="p-3 lead"><strong><a href="{{site.data.cardcourses.link}}">{{site.data.cardcourses.title}}</a></strong></h3> | ||
<h3 class="p-3 lead"><strong><a href="{{cv.link}}">{{cv.title}}</a></strong></h3> | ||
<img class="img-fluid p-1 lazyload" loading="lazy" width="100%" height="100%" | ||
data-src="{{site.data.cardcourses.image}}"/> | ||
<p class="text-dark p-1 mt-3">{{site.data.cardcourses.description}}</p> | ||
<p><a href="{{site.data.cardcourses.link}}" | ||
data-src="{{cv.image}}"/> | ||
<p class="text-dark p-1 mt-3">{{cv.subtitle}}</p> | ||
<p><a href="{{cv.link}}" | ||
class="btn col-12 mt-3 mb-3 bg-green btn-outline-success" | ||
style="border-radius:0;">{{site.data.cardcourses.button}}</a></p> | ||
style="border-radius:0;">{{cv.button}}</a></p> | ||
</div> | ||
{% endfor %} | ||
{% endif %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{% if page.coursescard == true %} | ||
{% for cv in site.data.cardcourses.cardlist | limit:{{site.data.cardbook.display_on_blog_page}} %} | ||
<div class="zoom mb-3 shadow-sm border-success border-top"> | ||
<h3 class="p-3 lead"><strong><a href="{{cv.link}}">{{cv.title}}</a></strong></h3> | ||
<img class="img-fluid p-1 lazyload" loading="lazy" width="100%" height="100%" | ||
data-src="{{cv.image}}"/> | ||
<p class="text-dark p-1 mt-3">{{cv.subtitle}}</p> | ||
<p><a href="{{cv.link}}" | ||
class="btn col-12 mt-3 mb-3 bg-green btn-outline-success" | ||
style="border-radius:0;">{{cv.button}}</a></p> | ||
</div> | ||
{% endfor %} | ||
{% endif %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters