Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html lang="en">
- <!-- For use with htmlgen at https://pastebin.com/rsC1jRDj and CSV data such as https://pastebin.com/gBHSh8tV -->
- <head>
- <meta charset="UTF-8">
- <style>
- .card {
- width: 400px;
- border: 2px solid #333;
- border-radius: 10px;
- padding: 20px;
- font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
- background: #fdfdfd;
- box-shadow: 5px 5px 15px rgba(0,0,0,0.1);
- margin: 20px;
- }
- .header { border-bottom: 2px solid #e00; padding-bottom: 10px; margin-bottom: 15px; }
- .name { font-size: 22px; font-weight: bold; color: #111; text-transform: uppercase; }
- .id-badge { float: right; background: #333; color: white; padding: 5px 10px; border-radius: 5px; font-size: 12px; }
- .role { font-weight: bold; color: #e00; margin-top: 5px; }
- .details { font-size: 14px; color: #555; line-height: 1.6; }
- .bio-box {
- background: #eee;
- padding: 10px;
- border-radius: 5px;
- font-size: 13px;
- margin-top: 15px;
- border-left: 4px solid #333;
- }
- .footer { font-size: 10px; color: #aaa; margin-top: 15px; text-align: center; }
- .warning { color: #e00; font-weight: bold; font-size: 11px; text-transform: uppercase; }
- </style>
- </head>
- <body>
- <div class="card">
- <div class="id-badge">ID: {{LastName|initials}}-{{$row}}</div>
- <div class="header">
- <div class="name">{{FirstName}} {{LastName|upper}}</div>
- <div class="role">{{Role}} — Series {{Series}}</div>
- </div>
- <div class="details">
- <div><strong>Email:</strong> {{Email}}</div>
- {{if Phone}}
- <div><strong>Phone:</strong> {{Phone|nobreak}}</div>
- {{/if}}
- {{if Website}}
- <div><strong>Link:</strong> <a href="{{Website|url}}">Official Site</a></div>
- {{/if}}
- </div>
- <div class="bio-box">
- {{Bio|bbcode}}
- </div>
- {{if Status != Active}}
- <div class="warning">⚠️ Notice: Employee is currently on {{Status}}</div>
- {{/if}}
- <div class="footer">
- Generated on {{$date}} | Record {{$row}} of {{$total}}<br>
- Taskmaster Office Proprietary Content
- </div>
- </div>
- </body>
- </html>
Advertisement