소스 검색

feat: disable indexing by search engines

Zubarev Grigoriy 7 달 전
부모
커밋
93f0dddd68
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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>