my.html 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <!-- 个人中心 -->
  2. <!DOCTYPE html>
  3. <html>
  4. <head>
  5. <%- include('components/meta-head.html') %>
  6. <link rel="stylesheet" href="/css/insight.css" />
  7. </head>
  8. <body class="sticky">
  9. <%- include('components/site-header.html') %>
  10. <div class="wrapper user-courses">
  11. <div class="header">
  12. <h3>我的课程</h3>
  13. </div>
  14. <% if(list.length){ %>
  15. <ul class="courses-list clearfix">
  16. <% list.forEach(item=>{%>
  17. <li>
  18. <a href="<%= item.href%>" class="figure">
  19. <img src="<%= item.detailimg%>" alt="">
  20. </a>
  21. <div class="title">
  22. <a href="<%= item.href%>"><%= item.title%></a>
  23. </div>
  24. <a href="<%= item.href%>" class="button">立即学习</a>
  25. </li>
  26. <%})%>
  27. </ul>
  28. <% }else{ %>
  29. <div class="empty">
  30. 暂无课程哦~
  31. </div>
  32. <% } %>
  33. <!-- <div class="pagination">
  34. <span class="current">1</span>
  35. <a href="/">2</a>
  36. <a href="/">3</a>
  37. </div> -->
  38. </div>
  39. <%- include('components/site-footer.html') %>
  40. </body>
  41. </html>