generated from imswarnil/CRM-Analytics-Academy
-
-
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
Showing
2 changed files
with
106 additions
and
5 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,7 +1,97 @@ | ||
--- | ||
description: "A demo of Markdown and HTML includes" | ||
hero : false | ||
layout: resource | ||
title: Resources | ||
permalink: /resources | ||
layout: default | ||
title: "Resources" | ||
permalink: /resources/ | ||
--- | ||
|
||
<section class="section"> | ||
<div class="container"> | ||
<div class="columns"> | ||
<!-- Sidebar Filters --> | ||
<div class="column is-3"> | ||
<div class="box"> | ||
<div class="field"> | ||
<p class="control has-icons-left"> | ||
<input class="input" type="text" id="search" placeholder="Search resources"> | ||
<span class="icon is-small is-left"> | ||
<i class="fas fa-search"></i> | ||
</span> | ||
</p> | ||
</div> | ||
|
||
<div class="mt-4"> | ||
<h3 class="title is-5">Difficulty</h3> | ||
<div class="field"> | ||
<label class="checkbox"> | ||
<input type="checkbox" class="filter" data-filter="beginner"> Beginner | ||
</label> | ||
</div> | ||
<div class="field"> | ||
<label class="checkbox"> | ||
<input type="checkbox" class="filter" data-filter="intermediate"> Intermediate | ||
</label> | ||
</div> | ||
</div> | ||
<div class="mt-4"> | ||
<h3 class="title is-5">Type</h3> | ||
<div class="field"> | ||
<label class="checkbox"> | ||
<input type="checkbox" class="filter" data-filter="book"> Book | ||
</label> | ||
</div> | ||
<div class="field"> | ||
<label class="checkbox"> | ||
<input type="checkbox" class="filter" data-filter="course"> Course | ||
</label> | ||
</div> | ||
<div class="field"> | ||
<label class="checkbox"> | ||
<input type="checkbox" class="filter" data-filter="tool"> Tool | ||
</label> | ||
</div> | ||
<div class="field"> | ||
<label class="checkbox"> | ||
<input type="checkbox" class="filter" data-filter="tutorial"> Tutorial | ||
</label> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
<!-- Main Content --> | ||
<div class="column"> | ||
<div class="columns is-multiline" id="resource-list"> | ||
{% for resource in site.resources %} | ||
<div class="column is-6 resource-card" data-difficulty="{{ resource.difficulty }}" data-type="{{ resource.type }}"> | ||
<div class="card"> | ||
<div class="card-content"> | ||
<div class="media"> | ||
<div class="media-left"> | ||
<figure class="image is-48x48"> | ||
<img src="{{ resource.image }}" alt="Resource icon"> | ||
</figure> | ||
</div> | ||
<div class="media-content"> | ||
<p class="title is-4"> | ||
<a href="{{ resource.url }}">{{ resource.title }}</a> | ||
</p> | ||
<p class="subtitle is-6">{{ resource.topic }}</p> | ||
</div> | ||
</div> | ||
<div class="content"> | ||
{{ resource.description }} | ||
<br> | ||
<div class="tags mt-2"> | ||
<span class="tag is-primary">{{ resource.difficulty | capitalize }}</span> | ||
<span class="tag is-info">{{ resource.type | capitalize }}</span> | ||
<span class="tag is-{{ resource.price == 'free' ? 'success' : 'danger' }}">{{ resource.price | capitalize }}</span> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
{% endfor %} | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</section> |
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,11 @@ | ||
--- | ||
title: "Python Basics" | ||
type: "course" | ||
topic: "Programming" | ||
difficulty: "beginner" | ||
price: "free" | ||
image: "/assets/resources/python.png" | ||
description: "Learn Python programming from scratch with hands-on exercises and projects." | ||
layout: resource-single | ||
permalink: /resources/course/python-basics/ | ||
--- |