Skip to content
This repository has been archived by the owner on Apr 30, 2020. It is now read-only.

Commit

Permalink
fix(Components/DocumentDefault): remove duplicate class attribute on …
Browse files Browse the repository at this point in the history
…html element (#171)

use single attribute and remove no-js class, add space for twig filters to be more consistent
  • Loading branch information
Doğa Gürdal committed May 11, 2017
1 parent 21f597a commit 0a56ffa
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Components/DocumentDefault/index.twig
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
<!DOCTYPE html>
<html class="no-js {{ body_class }}" lang="{{ site.language }}" dir="{{ dir }}" is="flynt-document-default" class="flyntComponent">
<html class="flyntComponent {{ body_class }}" lang="{{ site.language }}" dir="{{ dir }}" is="flynt-document-default">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1">
<link href="{{ faviconPath|e('esc_url') }}" rel="shortcut icon" type="image/png">
<link rel="apple-touch-icon" href="{{ appleTouchIcon180x180Path|e('esc_url') }}">
<link rel="alternate" type="application/rss+xml" title="{{ feedTitle }}" href="{{ site.rss2|e('esc_url') }}">
<link href="{{ faviconPath | e('esc_url') }}" rel="shortcut icon" type="image/png">
<link rel="apple-touch-icon" href="{{ appleTouchIcon180x180Path | e('esc_url') }}">
<link rel="alternate" type="application/rss+xml" title="{{ feedTitle }}" href="{{ site.rss2 | e('esc_url') }}">
{{ wp_head }}
</head>
<body role="document">
Expand Down

0 comments on commit 0a56ffa

Please sign in to comment.