Changes for page Academy

Last modified by Erik Bakker on 2024/09/24 16:12

From version 40.1
edited by Erik Bakker
on 2022/04/21 15:58
Change comment: There is no comment for this version
To version 23.1
edited by Erik Bakker
on 2022/04/21 15:20
Change comment: Added object

Summary

Details

XWiki.GadgetClass[1]
content
... ... @@ -1,68 +1,61 @@
1 -{{html}}
2 -<!DOCTYPE html>
3 -<html>
4 -<head>
5 -<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
6 -<style>
7 -* {
8 - box-sizing: border-box;
9 -}
10 -
11 -/* Create two equal columns that floats next to each other */
12 -.column {
13 - float: left;
14 - width: "50%";
15 - padding: 10px;
16 -}
17 -
18 -/* Style the buttons */
19 -.btn {
20 - border: none;
21 - outline: none;
22 - padding: 12px 16px;
23 - background-color: #f1f1f1;
24 - cursor: pointer;
25 -}
26 -
27 -.btn:hover {
28 - background-color: #ddd;
29 -}
30 -
31 -.btn.active {
32 - background-color: #666;
33 - color: white;
34 -}
35 -</style>
36 -</head>
37 -<body>
38 -
39 -
40 -
41 -<div class="row">
42 - <div class="column" style="background-color:#aaa;">
43 - <h2>Column 1</h2>
44 - <p>Some text..</p>
1 +{{html clean="false"}}
2 +<div class="container">
3 + <div class="card">
4 + <div class="card__header">
5 + <img src="https://source.unsplash.com/600x400/?computer" alt="card__image" class="card__image" width="600">
6 + </div>
7 + <div class="card__body">
8 + <span class="tag tag-blue">Technology</span>
9 + <h4>What's new in 2022 Tech</h4>
10 + <p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Sequi perferendis molestiae non nemo doloribus. Doloremque, nihil! At ea atque quidem!</p>
11 + </div>
12 + <div class="card__footer">
13 + <div class="user">
14 + <img src="https://i.pravatar.cc/40?img=1" alt="user__image" class="user__image">
15 + <div class="user__info">
16 + <h5>Jane Doe</h5>
17 + <small>2h ago</small>
18 + </div>
19 + </div>
20 + </div>
45 45   </div>
46 - <div class="column" style="background-color:#bbb;">
47 - <h2>Column 2</h2>
48 - <p>Some text..</p>
22 + <div class="card">
23 + <div class="card__header">
24 + <img src="https://source.unsplash.com/600x400/?food" alt="card__image" class="card__image" width="600">
25 + </div>
26 + <div class="card__body">
27 + <span class="tag tag-brown">Food</span>
28 + <h4>Delicious Food</h4>
29 + <p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Sequi perferendis molestiae non nemo doloribus. Doloremque, nihil! At ea atque quidem!</p>
30 + </div>
31 + <div class="card__footer">
32 + <div class="user">
33 + <img src="https://i.pravatar.cc/40?img=2" alt="user__image" class="user__image">
34 + <div class="user__info">
35 + <h5>Jony Doe</h5>
36 + <small>Yesterday</small>
37 + </div>
38 + </div>
39 + </div>
49 49   </div>
50 -</div>
51 -
52 -<div class="row">
53 - <div class="column" style="background-color:#ccc;">
54 - <h2>Column 3</h2>
55 - <p>Some text..</p>
41 + <div class="card">
42 + <div class="card__header">
43 + <img src="https://source.unsplash.com/600x400/?car,automobile" alt="card__image" class="card__image" width="600">
44 + </div>
45 + <div class="card__body">
46 + <span class="tag tag-red">Automobile</span>
47 + <h4>Race to your heart content</h4>
48 + <p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Sequi perferendis molestiae non nemo doloribus. Doloremque, nihil! At ea atque quidem!</p>
49 + </div>
50 + <div class="card__footer">
51 + <div class="user">
52 + <img src="https://i.pravatar.cc/40?img=3" alt="user__image" class="user__image">
53 + <div class="user__info">
54 + <h5>John Doe</h5>
55 + <small>2d ago</small>
56 + </div>
57 + </div>
58 + </div>
56 56   </div>
57 - <div class="column" style="background-color:#ddd;">
58 - <h2>Column 4</h2>
59 - <p>Some text..</p>
60 - </div>
61 61  </div>
62 -
63 -
64 -
65 -</body>
66 -</html>
67 -
68 68  {{/html}}