/a> first comm лет назад: 2 RE.js 77628cf8bf first comm лет назад: 2 RO.js 77628cf8bf first comm лет назад: 2 RS.js 77628cf8bf first comm лет назад: 2 RU.js 77628cf8bf first comm лет назад: 2 RW.js 77628cf8bf first comm лет назад: 2 SA.js 77628cf8bf first comm лет назад: 2 SB.js 77628cf8bf first comm лет назад: 2 SC.js 77628cf8bf first comm лет назад: 2 SD.js 77628cf8bf first comm лет назад: 2 SE.js 77628cf8bf first comm лет назад: 2 SG.js 77628cf8bf first comm лет назад: 2 SH.js 77628cf8bf first comm лет назад: 2 SI.js 77628cf8bf first comm лет назад: 2 SK.js 77628cf8bf first comm лет назад: 2 SL.js 77628cf8bf first comm лет назад: 2 SM.js 77628cf8bf first comm лет назад: 2 SN.js 77628cf8bf first comm лет назад: 2 SO.js 77628cf8bf first comm лет назад: 2 SR.js 77628cf8bf first comm лет назад: 2 ST.js 77628cf8bf first comm лет назад: 2 SV.js 77628cf8bf first comm лет назад: 2 SY.js 77628cf8bf first comm лет назад: 2 SZ.js 77628cf8bf first comm лет назад: 2 TC.js 77628cf8bf first comm лет назад: 2 TD.js 77628cf8bf first comm лет назад: 2 TG.js 77628cf8bf first comm лет назад: 2 TH.js 77628cf8bf first comm лет назад: 2 TJ.js 77628cf8bf first comm лет назад: 2 TK.js 77628cf8bf first comm лет назад: 2 TL.js 77628cf8bf first comm лет назад: 2 TM.js 77628cf8bf first comm лет назад: 2 TN.js 77628cf8bf first comm лет назад: 2 TO.js 77628cf8bf first comm лет назад: 2 TR.js 77628cf8bf first comm лет назад: 2 TT.js 77628cf8bf first comm лет назад: 2 TV.js 77628cf8bf first comm лет назад: 2 TW.js 77628cf8bf first comm лет назад: 2 TZ.js 77628cf8bf first comm лет назад: 2 UA.js 77628cf8bf first comm лет назад: 2 UG.js 77628cf8bf first comm лет назад: 2 US.js 77628cf8bf first comm лет назад: 2 UY.js 77628cf8bf first comm лет назад: 2 UZ.js 77628cf8bf first comm лет назад: 2 VA.js 77628cf8bf first comm лет назад: 2 VC.js 77628cf8bf first comm лет назад: 2 VE.js 77628cf8bf first comm лет назад: 2 VG.js 77628cf8bf first comm лет назад: 2 VI.js 77628cf8bf first comm лет назад: 2 VN.js 77628cf8bf first comm лет назад: 2 VU.js 77628cf8bf first comm лет назад: 2 WF.js 77628cf8bf first comm лет назад: 2 WS.js 77628cf8bf first comm лет назад: 2 YE.js 77628cf8bf first comm лет назад: 2 YT.js 77628cf8bf first comm лет назад: 2 ZA.js 77628cf8bf first comm лет назад: 2 ZM.js 77628cf8bf first comm лет назад: 2 ZW.js 77628cf8bf first comm лет назад: 2 alt-af.js 77628cf8bf first comm лет назад: 2 alt-an.js 77628cf8bf first comm лет назад: 2 alt-as.js 77628cf8bf first comm лет назад: 2 alt-eu.js 77628cf8bf first comm лет назад: 2 alt-na.js 77628cf8bf first comm лет назад: 2 alt-oc.js 77628cf8bf first comm лет назад: 2 alt-sa.js 77628cf8bf first comm лет назад: 2 alt-ww.js 77628cf8bf first comm лет назад: 2 tum/whitesports - Gogs: Simplico Git Service

Aucune description

embed.php 481B

12345678910111213141516171819202122232425
  1. <?php
  2. /**
  3. * Contains the post embed base template
  4. *
  5. * When a post is embedded in an iframe, this file is used to create the output
  6. * if the active theme does not include an embed.php template.
  7. *
  8. * @package WordPress
  9. * @subpackage oEmbed
  10. * @since 4.4.0
  11. */
  12. get_header( 'embed' );
  13. if ( have_posts() ) :
  14. while ( have_posts() ) :
  15. the_post();
  16. get_template_part( 'embed', 'content' );
  17. endwhile;
  18. else :
  19. get_template_part( 'embed', '404' );
  20. endif;
  21. get_footer( 'embed' );