home.html 971 B

123456789101112131415161718192021222324252627282930
  1. @if (profile){
  2. <section id='profile'>
  3. <img
  4. src="{{ apiURL }}{{ profile.image }}"
  5. srcset="{{ utilService.generateSrcset(apiURL + profile.image) }}"
  6. />
  7. <div id="profile-text">
  8. <p>{{ profile.bio }}</p>
  9. <p>{{ profile.description }}</p>
  10. </div>
  11. </section>
  12. }
  13. <section id='catalog'>
  14. @for (project of projects; track project) {
  15. <article class="project" id="project-{{ project.id }}">
  16. <a href="/projects/{{ project.permalink }}">
  17. <img class="project-image-alt" id="img-project-{{project.id}}-alt"/>
  18. <img
  19. class="project-image" id="img-project-{{project.id}}"
  20. src="{{ apiURL }}{{ project.images[0].path }}"
  21. srcset="{{ utilService.generateSrcset(apiURL + project.images[0].path) }}"
  22. />
  23. <div class='project_details'>
  24. <h3>{{ project.title }}</h3>
  25. </div>
  26. </a>
  27. </article>
  28. }
  29. </section>
  30. <input id='apiURL' type='hidden' value='{{ apiURL }}'>