diff --git a/_app/_includes/themes/curtana/includes/footer.html b/_app/_includes/themes/curtana/includes/footer.html
index 736f74851..2a86c628d 100644
--- a/_app/_includes/themes/curtana/includes/footer.html
+++ b/_app/_includes/themes/curtana/includes/footer.html
@@ -42,7 +42,7 @@
-
+
{{ amsf_google_analytics }}
diff --git a/_app/_posts/note/2014-06-09-creating-themes.md b/_app/_posts/note/2014-06-09-creating-themes.md
index 3117137b3..003bb597c 100644
--- a/_app/_posts/note/2014-06-09-creating-themes.md
+++ b/_app/_posts/note/2014-06-09-creating-themes.md
@@ -271,7 +271,7 @@ Define the following code snippet into your theme template (it's recommended to
```html
-
+
```
### Page / Post Specific CSS Block Support
diff --git a/_app/_posts/note/2014-06-11-customizing-styles.md b/_app/_posts/note/2014-06-11-customizing-styles.md
index 932274374..e7c546d96 100644
--- a/_app/_posts/note/2014-06-11-customizing-styles.md
+++ b/_app/_posts/note/2014-06-11-customizing-styles.md
@@ -5,15 +5,15 @@ category: note
tags: customization
---
-You can customize the basic look and feel without touching the theme files by changing `custom.js` and `custom.less`:
+You can customize the basic look and feel without touching the theme files by changing `user.js` and `user.less`:
```
├── _app/
| ├── assets/
| | └── _js/
-| | | └── custom.js
+| | | └── user.js
| | └── _less/
-| | | └── custom.less
+| | | └── user.less
| | └── themes/
| | | └── ...
```
diff --git a/_app/assets/_js/custom.js b/_app/assets/_js/user.js
similarity index 100%
rename from _app/assets/_js/custom.js
rename to _app/assets/_js/user.js
diff --git a/_app/assets/_less/custom.less b/_app/assets/_less/user.less
similarity index 100%
rename from _app/assets/_less/custom.less
rename to _app/assets/_less/user.less
diff --git a/_app/assets/themes/curtana/_less/app.less b/_app/assets/themes/curtana/_less/app.less
index 9b10b045d..761bd79f4 100644
--- a/_app/assets/themes/curtana/_less/app.less
+++ b/_app/assets/themes/curtana/_less/app.less
@@ -777,4 +777,4 @@ body:hover .latest {
@import "module-loader";
// Import user custom styles
-@import "../../../_less/custom";
+@import "../../../_less/user";