- Created `referralprogram-invitation.html.twig` for sending invitations to friends to join the referral program. - Created `referralprogram-voucher.html.twig` for notifying users about their voucher after referring a friend. - Both templates include responsive design and utilize the modern email layout. - Added translation support for various text elements within the templates.
18 lines
335 B
ApacheConf
18 lines
335 B
ApacheConf
# Apache 2.2
|
|
<IfModule !mod_authz_core.c>
|
|
Order allow,deny
|
|
Allow from all
|
|
<FilesMatch "\.(twig)$">
|
|
Order deny,allow
|
|
Deny from all
|
|
</FilesMatch>
|
|
</IfModule>
|
|
|
|
# Apache 2.4
|
|
<IfModule mod_authz_core.c>
|
|
Require all granted
|
|
<FilesMatch "\.(twig)$">
|
|
Require all denied
|
|
</FilesMatch>
|
|
</IfModule>
|