Adds sunflower theme detection (#215)

This commit is contained in:
Markus Günther 2021-06-29 21:17:11 +02:00 committed by GitHub
parent abb6fa5460
commit e59b05fc6c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -76,6 +76,9 @@ class Checker(AbstractChecker):
'/themes/urwahl3000' in page_content['content']):
generator = 'wordpress-urwahl'
elif ('/themes/sunflower' in page_content['content']):
generator = 'wordpress-sunflower'
elif ('josephknowsbest' in page_content['content'] or
'Joseph-knows-best' in page_content['content']):
generator = 'wordpress-josephknowsbest'