templates/community/layouts/community.html.twig line 1

Open in your IDE?
  1. {% extends 'resources/theme/base.html.twig' %}
  2. {% import 'resources/components/datatable.html.twig' as datatable %}
  3.     {% block style %}<style>
  4.         /* Animation */
  5.         @keyframes animateCountdown {
  6.             0% {
  7.                 transform: scale(1);
  8.             }
  9.             50% {
  10.                 transform: scale(1.2);
  11.             }
  12.             100% {
  13.                 transform: scale(1);
  14.             }
  15.         }
  16.         .countdown-number {
  17.             isplay: inline-block;
  18.     margin: 0px 10px;
  19.     font-size: 0.8em;
  20.     background-color: #a92a3b;
  21.     border-radius: 10px;
  22.     padding: 10px;
  23.     color: white;
  24.         }
  25.     </style>{% endblock %}
  26. {% block javascriptImports %}
  27.     {{ parent() }}
  28.     {{ datatable.datatable_scripts() }}
  29. {% endblock %}
  30. {% do set_config("page.app", {
  31.     "name": "MyCommunity",
  32.     "logo": asset("images/community/mycomminity.ico")
  33. }) %}