Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mmrath/hugo-bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMurali Mohan Rath <mmrath@gmail.com>2015-10-31 02:12:14 +0300
committerMurali Mohan Rath <mmrath@gmail.com>2015-10-31 02:12:14 +0300
commitce0a8293beceb2076206afaf840d0c287caeefc2 (patch)
tree84a9a08041fc17df0183369a495ec71d503a0c07
parent30383b7d1d791d0462801eaa39ada932950b669f (diff)
remove data folder
-rw-r--r--layouts/data/FootMenu.toml6
-rw-r--r--layouts/data/Menu.toml14
-rw-r--r--layouts/partials/about-content.html60
3 files changed, 0 insertions, 80 deletions
diff --git a/layouts/data/FootMenu.toml b/layouts/data/FootMenu.toml
deleted file mode 100644
index 2bda0a9..0000000
--- a/layouts/data/FootMenu.toml
+++ /dev/null
@@ -1,6 +0,0 @@
-[license]
- Name = "license"
- URL = "/license"
-[disclaimer]
- Name = "Disclaimer"
- URL = "disclaimer"
diff --git a/layouts/data/Menu.toml b/layouts/data/Menu.toml
deleted file mode 100644
index b0809de..0000000
--- a/layouts/data/Menu.toml
+++ /dev/null
@@ -1,14 +0,0 @@
-[posts]
- Name = "Posts"
- Title = "Show list of posts"
- URL = "/post"
-
-[tags]
- Name = "Tags"
- Title = "Show list of tags"
- URL = "/tags"
-
-[about]
- Name = "About"
- IconClass = "fa-info-circle"
- URL = "/about"
diff --git a/layouts/partials/about-content.html b/layouts/partials/about-content.html
deleted file mode 100644
index c19ab7b..0000000
--- a/layouts/partials/about-content.html
+++ /dev/null
@@ -1,60 +0,0 @@
-{{ with .Site.Data.Menu }}
-<div class="container">
- <div class="row">
- <div class=" col-lg-offset-3 col-lg-6">
- <div class="panel panel-default">
- <div class="panel-body">
- <div class="row">
- <div class="col-lg-12">
- <div class="row">
- <div class="col-sm-offset-3 col-sm-6 col-md-offset-3 col-md-6 col-lg-offset-3 col-lg-6">
- <img class="img-square img-responsive"
- src="{{ "/assets/images/" | absURL }}profile_pic.jpeg">
- </div>
- </div>
- </div>
- </div>
- <div class="row">
- <div class="col-lg-12">
- <div class="row">
- <div class="centered-text col-sm-offset-3 col-sm-6 col-md-offset-3 col-md-6 col-lg-offset-3 col-lg-6">
- <div itemscope itemtype="http://schema.org/Person" >
- <h2> <span itemprop="name">{{ .name }}</span></h2>
- <p itemprop="jobTitle">Developer</p>
- <p><span itemprop="affiliation">{{.company}}</span></p>
- <p>
- <i class="fa fa-map-marker"></i> <span itemprop="addressRegion">{{.location}}</span>
- </p>
- <p itemprop="email"> <i class="fa fa-envelope">&nbsp;</i> <a href="mailto:{{.email}}">{{.email}}</a> </p>
- </div>
- </div>
- </div>
- </div>
- {% if .bio %}
- <div class="col-lg-12 centered-text">
- {{.bio}}
- </div>
- {% endif %}
- </div>
- </div>
- <div class="panel-footer">
- <div class="row">
- <div id="social-links" class=" col-lg-12">
- <div class="row">
- {% range .social %}
- <div class="col-xs-6 col-sm-3 col-md-2 col-lg-3 social-btn-holder">
- <a title="{{ .title }}" class="btn btn-social btn-block {{ .btnClass }}"
- target="_BLANK" href="{{ .url }}">
- <i class="fa {{.logo}}"></i> {{ .text}}
- </a>
- </div>
- {% endfor %}
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
-</div>
-{{ end }}