Created
November 20, 2014 02:01
-
-
Save jdunck/625ede423016d7d0e277 to your computer and use it in GitHub Desktop.
most used base templates
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ find . -name '*.html' | xargs grep -h '{% extends' | sed -e "s/'/\"/g" | sort | uniq -c | sort -n | |
1 <!DOCTYPE html>{% extends "common/templates/responsive_base.html" %} | |
1 {% extends "admin/change_form.html" %} | |
1 {% extends "admin/index.html" %} | |
1 {% extends "base.html" %} | |
1 {% extends "common/templates/blank.html" %} | |
1 {% extends "common/templates/donut-base.html" %} | |
1 {% extends "messaging/templates/email/base_ss_email_to_user.html" %} | |
1 {% extends "provider/templates/preview_base.html" %} | |
1 {% extends "rate-appointment-form-base.html" %} | |
1 {% extends "satchless/cart/base.html" %} | |
1 {% extends "satchless/product/base.html" %} | |
1 {% extends "templates/satchless/checkout/ncp/include-credit-card.html" %} | |
2 {% extends "admin/promos/change_form.html" %} | |
2 {% extends "consumer/templates/include-order-row.html" %} | |
2 {% extends "loreal/templates/loreal-base.html" %} | |
2 {% extends "messaging/templates/email/base_styleseat_email_to_client_fancy.html" %} | |
2 {% extends "provider/templates/base_home.html" %} | |
3 {% extends "admin/base.html" %} | |
3 {% extends "common/templates/new_simple.html" %} | |
3 {% extends "messaging/templates/email/base_boilerplate.html" %} | |
3 {% extends "satchless/checkout/base.html" %} | |
3 {% extends "satchless/order/base.html" %} | |
4 {% extends "common/templates/responsive_base.html" %} | |
6 {% extends "admin_ss/templates/base_stats_ajax.html" %} | |
6 {% extends "simple.html" %} | |
7 {% extends "growth/templates/base.html" %} | |
8 {% extends "common/templates/modal-new-base.html" %} | |
8 {% extends "common/templates/simple.html" %} | |
11 {% extends "new_simple.html" %} | |
12 {% extends "common/templates/modal-base.html" %} | |
12 {% extends "modal-new-base.html" %} | |
13 {% extends "messaging/templates/email/base_pro_email_premium.html" %} | |
15 {% extends "registration/templates/signup_flow/tmpl_signup.html" %} | |
19 {% extends "messaging/templates/email/styleseat_email_base.html" %} | |
20 {% extends "common/templates/new_base.html" %} | |
22 {% extends "messaging/templates/email/base_pro_email_to_client.html" %} | |
41 {% extends "messaging/templates/email/base_pro_email_fancy.html" %} | |
45 {% extends "admin/base_site.html" %} | |
66 {% extends "new_base.html" %} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment