From 51eadf273a735c8b87b852eb929fe851299c1238 Mon Sep 17 00:00:00 2001
From: Egor Tensin <Egor.Tensin@gmail.com>
Date: Mon, 30 Sep 2019 03:34:07 +0300
Subject: renamed layout 'plain' to 'default'

---
 _layouts/default.html | 7 +++++++
 _layouts/plain.html   | 7 -------
 index.html            | 2 +-
 3 files changed, 8 insertions(+), 8 deletions(-)
 create mode 100644 _layouts/default.html
 delete mode 100644 _layouts/plain.html

diff --git a/_layouts/default.html b/_layouts/default.html
new file mode 100644
index 0000000..db09984
--- /dev/null
+++ b/_layouts/default.html
@@ -0,0 +1,7 @@
+{% include common/header.html %}
+<div class="row">
+  <div class="col-md-12">
+    {{ content }}
+  </div>
+</div>
+{% include common/footer.html %}
diff --git a/_layouts/plain.html b/_layouts/plain.html
deleted file mode 100644
index db09984..0000000
--- a/_layouts/plain.html
+++ /dev/null
@@ -1,7 +0,0 @@
-{% include common/header.html %}
-<div class="row">
-  <div class="col-md-12">
-    {{ content }}
-  </div>
-</div>
-{% include common/footer.html %}
diff --git a/index.html b/index.html
index 9630e43..7405831 100644
--- a/index.html
+++ b/index.html
@@ -1,6 +1,6 @@
 ---
 title: Main page
-layout: plain
+layout: default
 ---
 <h1>{{ site.personal_info.name }}</h1>
 <hr/>
-- 
cgit v1.2.3