home.component.html 1.1 KB

1234567891011121314151617181920212223242526
  1. <section id='home_profile'>
  2. <h3>{{user?.firstName}} {{user?.lastName}}</h3>
  3. <article>
  4. <h4 id='tagline'>{{texts["TAGLINE"]}}</h4>
  5. <img id='profile_image' src="./img/profile/{{user?.image}}" alt="{{user?.firstName}} {{user?.lastName}}"/>
  6. <div id='profile_social'>
  7. <span class='fake_a' onclick='openMessage();'>
  8. <img src='./img/social/email.svg' i18n-alt alt='Send me a message' i18n-title title='Send me a message'/>
  9. </span>
  10. @if(user?.urls){
  11. <a *ngFor="let url of user?.urls" target='_blank' title='{{url.description}}' href='{{url.url}}'>
  12. <img src='./img/social/{{url.logo}}' alt='{{url.name}}' title='{{url.description}}'/>
  13. </a>
  14. }
  15. </div>
  16. <div [innerHTML]="texts['BIO_SHORT']" id='bio'></div>
  17. </article>
  18. </section>
  19. <section id='home_projects'>
  20. <h3 i18n>Projects</h3>
  21. <app-project-preview *ngFor="let project of projects" [project]="project"></app-project-preview>
  22. <a id='all_projects' class='a_button' href="/projects/" i18n>
  23. See all projects
  24. </a>
  25. </section>
  26. <app-message></app-message>