Skip to content
Snippets Groups Projects
Select Git revision
  • 921bf9fbf881c9c605d66fb71a1d9967e385f747
  • test default protected
  • master protected
  • niki_edit_branch
  • feat/custom-css
  • feat/redesign-improvements-10
  • feat/redesign-improvements-8
  • feat/redesign-fixes-3
  • feat/pirstan-changes
  • feat/separate-import-thread
  • feat/dary-improvements
  • features/add-pdf-page
  • features/add-typed-table
  • features/fix-broken-calendar-categories
  • features/add-embed-to-articles
  • features/create-mastodon-feed-block
  • features/add-custom-numbering-for-candidates
  • features/add-timeline
  • features/create-wordcloud-from-article-page
  • features/create-collapsible-extra-legal-info
  • features/extend-hero-banner
21 results

0098_alter_districtelectionprogrampage_guarantor.py

Blame
  • twitter_widget.html 756 B
    <div class="flex flex-wrap justify-center mb-8 lg:mb-24">
    {% for tweet in tweet_list %}
      <div class="w-full flex max-w-xs">
        <div class="p-4 flex flex-col items-center text-center border border-grey-100">
          <img
            class="rounded-full shadow-sm w-12 mb-2"
            src="{{ tweet.author_img_url }}"
            alt="user image"
          />
          <h5 class="font-alt mb-2">
            {{ tweet.author_name }}
          </h5>
          <small class="mb-4 text-turquoise-400">
            {{ tweet.author_username }}
          </small>
          <p class="text-base leading-6 mb-2">
            {{ tweet.text }}
          </p>
          <a href="" class="hover:no-underline">
            <i class="ico--twitter text-turquoise-400 text-xl"></i>
          </a>
        </div>
      </div>
    {% endfor %}
    </div>