소스 검색

Correct the html element main

Correct the HTML5 element 'content' to 'main'. 'content' is obsolete and wasn't meant to be used in ordinary HTML. https://developer.mozilla.org/en-US/docs/Web/HTML/Element/content
Chris 6 년 전
부모
커밋
31c610316d
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      bakerydemo/templates/base.html

+ 2 - 2
bakerydemo/templates/base.html

@@ -25,10 +25,10 @@
     {% breadcrumbs %}
 {% endblock breadcrumbs %}
 
-<content role="main">
+<main role="main">
     {% block content %}
     {% endblock content %}
-</content>
+</main>
 
     <hr>