extra colors, 404 fix and some more
This commit is contained in:
@@ -1,65 +1,70 @@
|
||||
<section id="projects">
|
||||
<div class="container-fluid py-3 pt-5" data-aos="fade-up" data-aos-easing="linear" data-aos-duration="600"
|
||||
data-aos-once="true">
|
||||
<div class="container-fluid py-5">
|
||||
<div class="text-dark text-center h3">Projects</div>
|
||||
<div class="row justify-content-center pt-2">
|
||||
{{ range ( where .Site.RegularPages "Type" "project" ) }}
|
||||
<div class="col-md-8 pro m-3 shadow" data-aos="fade-up" data-aos-duration="1500" data-aos-once="true">
|
||||
<div
|
||||
class="col-md-8 pro m-3 shadow"
|
||||
data-aos="fade-up"
|
||||
data-aos-duration="1500"
|
||||
data-aos-once="true"
|
||||
>
|
||||
<div class="row">
|
||||
<div class="col-md-6 bg-pro">
|
||||
<img src='{{ .Params.img }}' alt="{{ .Title }}">
|
||||
<img src="{{ .Params.img }}" alt="{{ .Title }}" />
|
||||
</div>
|
||||
<div class="col-md-6 content-pro p-3 bg-light">
|
||||
<div class="content-pro-top">
|
||||
<h2>{{ .Title }}</h2>
|
||||
<p class="card-text pt-2">
|
||||
{{ .Params.description }}
|
||||
</p>
|
||||
<p class="card-text pt-2">{{ .Params.description }}</p>
|
||||
</div>
|
||||
<span class="float-right">
|
||||
{{ if .Params.featured }}
|
||||
<a href="{{ .Params.featured }}" class="px-1">
|
||||
<i class="fas text-info fa-link"></i>
|
||||
</a>
|
||||
{{ end }}
|
||||
{{ if .Params.github }}
|
||||
{{ end }} {{ if .Params.github }}
|
||||
<a href="{{ .Params.github }}" class="px-1 pr-2">
|
||||
<i class="fab text-dark fa-lg fa-github pro-github"></i>
|
||||
</a>
|
||||
{{ end }}
|
||||
<a class="btn btn-sm pro-btn btn-outline-info" target="_blank" href="{{ .Permalink }}">
|
||||
<a
|
||||
class="btn btn-sm pro-btn btn-outline-info"
|
||||
target="_blank"
|
||||
href="{{ .Permalink }}"
|
||||
>
|
||||
Know more...
|
||||
</a>
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{{ end }}
|
||||
{{ range .Site.Params.projects }}
|
||||
<div class="col-md-8 pro m-3 shadow" data-aos="fade-up" data-aos-duration="1500" data-aos-once="true">
|
||||
{{ end }} {{ range .Site.Params.projects }}
|
||||
<div
|
||||
class="col-md-8 pro m-3 shadow"
|
||||
data-aos="fade-up"
|
||||
data-aos-duration="1500"
|
||||
data-aos-once="true"
|
||||
>
|
||||
<div class="row">
|
||||
<div class="col-md-6 bg-pro">
|
||||
<img src='{{ .img }}' alt="{{ .name }}">
|
||||
<img src="{{ .img }}" alt="{{ .name }}" />
|
||||
</div>
|
||||
<div class="col-md-6 content-pro p-3 bg-light">
|
||||
<div class="content-pro-top">
|
||||
<h2>{{ .name }}</h2>
|
||||
<p class="card-text pt-2">
|
||||
{{ .description }}
|
||||
</p>
|
||||
<p class="card-text pt-2">{{ .description }}</p>
|
||||
</div>
|
||||
<span class="float-right">
|
||||
{{ if .featuredlink }}
|
||||
<a href="{{ .featuredlink }}" class="px-1">
|
||||
<i class="fas text-info fa-link"></i>
|
||||
</a>
|
||||
{{ end }}
|
||||
{{ if .githublink }}
|
||||
{{ end }} {{ if .githublink }}
|
||||
<a href="{{ .githublink }}" class="px-1 pr-2">
|
||||
<i class="fab text-dark fa-lg fa-github pro-github"></i>
|
||||
</a>
|
||||
{{ end }}
|
||||
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
@@ -112,4 +117,4 @@
|
||||
</div>
|
||||
|
||||
{{ end }}
|
||||
-->
|
||||
-->
|
||||
|
||||
Reference in New Issue
Block a user