{% if item.image_url and item.image_url | is_favicon %} {# image_url is attacker-controllable (crawled): escaped only, never CSS url(). #} {{ item.source_url | domain }} {% elif item.image_url %} {# og:image is attacker-controllable (crawled): render via an HTML-escaped rather than inline CSS url() to avoid CSS-context injection. #} {% else %} ◎ {% endif %} {% if item.category %} {{ item.category.value }} {% endif %} {% if item.trust_score is not none %} {% set pct = ((item.trust_score|float) * 100)|round(0)|int %} {{ pct }} {% endif %} {{ item.title }} {% if item.summary %} {{ item.summary }} {% endif %} {% if item.digest %} {% for para in item.digest.split('\n\n') %} {% if para.strip() %}{{ para.strip() }}{% endif %} {% endfor %} {% endif %} 원문 보기 → {% include "_detail_genealogy.html" %} {% include "_detail_signals.html" %}