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

github.com/jeblister/kube.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMohamed <jeblister@gmail.com>2021-06-29 13:42:52 +0300
committerGitHub <noreply@github.com>2021-06-29 13:42:52 +0300
commita77ae6b68c1227a704be1e050974951b1879ad3a (patch)
tree396ca0468efe21731db259b2e1bd69e78042a02b
parent2b94b6c6f5f4147b142225856ccc369b3434848e (diff)
parentbb6dd1f9d007e53fa7343465504609a004abdf8b (diff)
Merge pull request #35 from KamiQuasi/main-rename
Rename master to main
-rw-r--r--exampleSite/content/docs/mixins.md8
-rw-r--r--exampleSite/content/docs/quick-start.md10
-rw-r--r--layouts/_default/baseof.html4
-rw-r--r--static/css/main.css (renamed from static/css/master.css)0
-rw-r--r--static/js/main.js (renamed from static/js/master.js)0
5 files changed, 11 insertions, 11 deletions
diff --git a/exampleSite/content/docs/mixins.md b/exampleSite/content/docs/mixins.md
index 70a3b93..53c6fb4 100644
--- a/exampleSite/content/docs/mixins.md
+++ b/exampleSite/content/docs/mixins.md
@@ -10,12 +10,12 @@ toc = true
<h3 class="section-head" id="h-get-started"><a href="#h-get-started">Get Started</a></h3>
<p>Kube has been designed to help you with web development, that's why it's so easy to use Kube when building websites. To move forward quickly and efficiently, just link <code>kube.scss</code> from Kube package: this file contains variables, mixins and everything you need to simplify daily routine tasks.</p>
-<p>For example, import <code>kube.scss</code> into your <code>master.scss</code> styles file, which you will later compile into <code>master.css</code></p>
-<pre class="code skip"><span class="hljs-comment">// master.scss</span>
+<p>For example, import <code>kube.scss</code> into your <code>main.scss</code> styles file, which you will later compile into <code>main.css</code></p>
+<pre class="code skip"><span class="hljs-comment">// main.scss</span>
@<span class="hljs-keyword">import</span> <span class="hljs-string">"dist/scss/kube.scss"</span>;
</pre>
-<p>Now all Kube's variables and mixins are readily available in <code>master.scss</code>, and you can use them whenever needed.</p>
-<pre class="code skip"><span class="hljs-comment">// master.scss</span>
+<p>Now all Kube's variables and mixins are readily available in <code>main.scss</code>, and you can use them whenever needed.</p>
+<pre class="code skip"><span class="hljs-comment">// main.scss</span>
@<span class="hljs-keyword">import</span> <span class="hljs-string">"dist/scss/kube.scss"</span>;
<span class="hljs-comment">// use mixins</span>
diff --git a/exampleSite/content/docs/quick-start.md b/exampleSite/content/docs/quick-start.md
index dc75490..7dee0e9 100644
--- a/exampleSite/content/docs/quick-start.md
+++ b/exampleSite/content/docs/quick-start.md
@@ -52,18 +52,18 @@ bref = "As a complete and self-sufficient web framework, Kube is here to help yo
</p>
<p>
- For example, import kube.scss into your master.scss styles file, which you will later compile into <code>master.css</code>:
+ For example, import kube.scss into your main.scss styles file, which you will later compile into <code>main.css</code>:
</p>
-<pre class="code"><span class="hljs-comment">// master.scss</span>
+<pre class="code"><span class="hljs-comment">// main.scss</span>
@<span class="hljs-keyword">import</span> <span class="hljs-string">"dist/scss/kube.scss"</span>;</pre>
<p>
- Now all Kube's variables and mixins are readily available in <code>master.scss</code>,
+ Now all Kube's variables and mixins are readily available in <code>main.scss</code>,
and you can use them whenever needed. For instance, here's how one of examples:
</p>
-<pre class="code"><span class="hljs-comment">// master.scss</span>
+<pre class="code"><span class="hljs-comment">// main.scss</span>
<span class="hljs-keyword">@import</span> <span class="hljs-string">"dist/scss/kube.scss"</span>;
<span class="hljs-selector-id">#sidebar</span> {
@@ -73,7 +73,7 @@ bref = "As a complete and self-sufficient web framework, Kube is here to help yo
<p>Also, you could use settings from <code>variables.scss</code>:</p>
-<pre class="code"><span class="hljs-comment">// master.scss</span>
+<pre class="code"><span class="hljs-comment">// main.scss</span>
@<span class="hljs-keyword">import</span> <span class="hljs-string">"dist/scss/kube.scss"</span>;
<span class="hljs-selector-id">#my-layout</span> {
diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html
index cc107da..24981b3 100644
--- a/layouts/_default/baseof.html
+++ b/layouts/_default/baseof.html
@@ -38,7 +38,7 @@
<link href="{{ "/css/kube.min.css" | relURL }}" rel="stylesheet" type="text/css">
<link href="{{ "/css/kube.legenda.css" | relURL }}" rel="stylesheet" type="text/css">
<link href="{{ "/css/highlight.css" | relURL }}" rel="stylesheet" type="text/css">
- <link href="{{ "/css/master.css" | relURL }}" rel="stylesheet" type="text/css">
+ <link href="{{ "/css/main.css" | relURL }}" rel="stylesheet" type="text/css">
<link href="{{ "/css/kube.demo.css" | relURL }}" rel="stylesheet" type="text/css">
<!-- Your own theme here -->
<link href="{{ "/css/custom.css" | relURL }}" rel="stylesheet" type="text/css">
@@ -60,7 +60,7 @@
</script>
<script src="{{ "/js/kube.legenda.js" | relURL }}" type="text/javascript">
</script>
- <script src="{{ "/js/master.js" | relURL }}" type="text/javascript">
+ <script src="{{ "/js/main.js" | relURL }}" type="text/javascript">
</script>
</body>
diff --git a/static/css/master.css b/static/css/main.css
index ceb360e..ceb360e 100644
--- a/static/css/master.css
+++ b/static/css/main.css
diff --git a/static/js/master.js b/static/js/main.js
index e69de29..e69de29 100644
--- a/static/js/master.js
+++ b/static/js/main.js