diff --git a/README.md b/README.md
index 7b224eede1c0229bcde243f8a8a2f4f53e416525..0cd7ec1ec80b64f399bd2818eb84cdb3a5109c17 100644
--- a/README.md
+++ b/README.md
@@ -67,7 +67,7 @@ npm install
 ```
 
 ```console
-sass --watch sass:static/assets/css
+sass --watch scss/custom.scss:static/assets/css/custom.css
 ```
 
 > Keep in mind that the main branch of this repository only has the stable versions of the theme, if you want to see the development status and the unstable versions, change to the corresponding branch.
diff --git a/package-lock.json b/package-lock.json
index a987c53e9fb5fb5537ed9637b64a4c1a2d047510..92cf7d55cf20723c7a98ee19c0aa311abd47917e 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -1,6 +1,6 @@
 {
   "name": "ataraxia-zola",
-  "version": "1.0.0",
+  "version": "1.0.2",
   "lockfileVersion": 2,
   "requires": true,
   "packages": {
diff --git a/package.json b/package.json
index 8061deae9036d94e0a41dca0b3745004409fee82..64cb051b8922d422c837469ba1e073db894e46d2 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
 {
   "name": "ataraxia-zola",
-  "version": "1.0.0",
+  "version": "1.0.2",
   "description": "A simple and beautiful theme",
   "main": "index.js",
   "scripts": {
diff --git a/sass/colors/open-color.scss b/scss/colors/open-color.scss
similarity index 100%
rename from sass/colors/open-color.scss
rename to scss/colors/open-color.scss
diff --git a/sass/custom.scss b/scss/custom.scss
similarity index 100%
rename from sass/custom.scss
rename to scss/custom.scss
diff --git a/templates/blog.html b/templates/blog.html
index b01625397c6eaf7741e78043cd5ede4d94b574cf..815d12b5aa1432633d15a099bd12250ea3fd9e3a 100644
--- a/templates/blog.html
+++ b/templates/blog.html
@@ -32,7 +32,7 @@
             class="card card-bg-light mb-3 pb-3 border border-0 border-bottom rounded-0"
           >
             <div class="row g-0">
-              {% if page.extra.image.visible_in_main %}
+              {% if page.extra.image.visible_in_section %}
                 {% set class_card_body = "col-xl-8 ps-xl-2" %}
 
                 <header class="col-xl-4 align-self-center px-3 px-lg-4 px-xl-0">
diff --git a/templates/blog_page.html b/templates/blog_page.html
index 6e30770e1e50dc56c1f57c025569a1d97ca90393..5fce33f85d8675ff8a3b8990e194db91b6b84fbd 100644
--- a/templates/blog_page.html
+++ b/templates/blog_page.html
@@ -76,7 +76,7 @@
             </div>
           {% endif %}
         </div>
-        {%- if page.extra.image -%}
+        {%- if page.extra.image.visible_in_page -%}
           <div class="post-img mb-4 rounded-3">
             <img
               src="{{ get_url(path = page.extra.image.path) | safe }}"