Advertisement
Guest User

Untitled

a guest
Oct 22nd, 2019
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.81 KB | None | 0 0
  1. <script>
  2. export let movie;
  3.  
  4. const {
  5. title,
  6. imageUrl: src,
  7. awardWinCount,
  8. awardNominationCount,
  9. releaseDate: released,
  10. } = movie;
  11. </script>
  12.  
  13. <style>
  14. /* Style code removed for brevity. Check out the full repo if
  15. you want to get at the CSS. */
  16. </style>
  17.  
  18. <div class="box">
  19. <div class="columns is-mobile">
  20. <div class="column is-one-quarter img-container">
  21. <img {src} alt="Poster for {title}">
  22. </div>
  23.  
  24. <div class="column">
  25. <h3 class="is-size-5 is-uppercase movie-title">{title}</h3>
  26.  
  27. <p class="release-date">Released {released}</p>
  28.  
  29. <p class="awards">Won {awardWinCount} awards</p>
  30.  
  31. <p class="nominations">Nominated for {awardNominationCount} awards</p>
  32. </div>
  33. </div>
  34. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement