Browse Source

feat: disable indexing by search engines

Zubarev Grigoriy 7 months ago
parent
commit
93f0dddd68
1 changed files with 1 additions and 1 deletions
  1. 1 1
      templates/base.html

+ 1 - 1
templates/base.html

@@ -3,7 +3,7 @@
   <head>
     <meta charset="utf-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1" />
-    <meta name="robots" content="index, follow" />
+    <meta name="robots" content="noindex, nofollow" />
     <link rel="stylesheet" href="{{ url_for('static', path='css/main.css') }}" />
     <link rel="icon" type="image/png" href="{{ url_for('static', path='img/favicon.png') }}" />
     <title>{{ site_title }}</title>