|
|
@@ -19,21 +19,10 @@
|
|
|
|
|
|
<body>
|
|
|
<%- include('header') %>
|
|
|
-
|
|
|
- <div style="display: flex; justify-content: center; align-items: center; margin-top: 20px;">
|
|
|
- <div class="card" style="width: 200px;">
|
|
|
- <a href="/<%= lang %>/artist/<%= user._id %>"><img src="<%= user.avatar %>" alt="<%= user.username %>"></a>
|
|
|
- <div class="info">
|
|
|
- <p><strong>
|
|
|
- <%= user.username %>
|
|
|
- </strong></p>
|
|
|
- <p>
|
|
|
- <%= translate.worksCount[lang] %>: <strong>
|
|
|
- <%= user.count %>
|
|
|
- </strong>
|
|
|
- </p>
|
|
|
- </div>
|
|
|
- </div>
|
|
|
+ <div style="display: flex; flex-direction: column; justify-content: center; align-items: center; margin-top: 20px;">
|
|
|
+ <h1><%= translate.coloringPageArtist[lang] %>: <%= user.username %></h1>
|
|
|
+ <a href="/<%= lang %>/artist/<%= user._id %>"><img src="<%= user.avatar %>" style="border-radius: 20px; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);" alt="<%= user.username %>"></a>
|
|
|
+ <h2 style="font-size: 14px; color: gray;"><%= user.count %> Coloring Page Works</h2>
|
|
|
</div>
|
|
|
|
|
|
<div class="content">
|
|
|
@@ -41,7 +30,9 @@
|
|
|
<% data.forEach(item=> { %>
|
|
|
<div class="image-card">
|
|
|
<a href="<%= item.uri %>"><img src="<%= item.thumb %>" alt="<%= item.title %>"></a>
|
|
|
- <div class="card-title"><%= item.title %></div>
|
|
|
+ <div class="card-title">
|
|
|
+ <%= item.title %>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
<% }); %>
|
|
|
</div>
|