test.php 1015 B

1234567891011121314151617181920212223242526272829303132333435
  1. <?php
  2. require_once 'classes/Template.php';
  3. $titulo = 'Base';
  4. ?>
  5. <!DOCTYPE html>
  6. <html>
  7. <head>
  8. <title>Alumnos - <?php echo $titulo; ?></title>
  9. <?php Template::getCSS(); ?>
  10. <style>
  11. </style>
  12. </head>
  13. <body>
  14. <?php Template::header($titulo); ?>
  15. <main class="container-fluid content marco">
  16. <?php /***** Obtener imagenes de Moodle *****/
  17. $html = file_get_html('https://moodle.ingenieria.lasalle.mx');
  18. $main = $html->getElementById('region-main');
  19. $images = $main->find('img');
  20. if (count($images) > 0) { ?>
  21. <div class="row">
  22. <?php foreach($images as $img)
  23. echo '<img class="col-sm-4" src="' . $img->src . '" />'; ?>
  24. </div>
  25. <?php } ?>
  26. </main>
  27. <div style="isolation: isolate;">
  28. <?php Template::footer(); ?>
  29. </div>
  30. <?php Template::getJS(); ?>
  31. </body>
  32. </html>