forked from shsanayei-testuser/devblog
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
80 lines (72 loc) · 2.85 KB
/
index.html
File metadata and controls
80 lines (72 loc) · 2.85 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
---
layout: default
sitemap: false
pagination:
enabled: true
---
{% include preview-banner.html %}
{% include blog-header.html %}
<div class="row">
{% include blog-filter.html %}
<div class="adesso-container adesso-blog-overview">
{% for post in paginator.posts %}
{% if post.layout == 'post' %}
{% assign author = site.data.authors[post.author] %}
<div class="adesso-blog-elem">
{% if post.categories %}
{% for category in post.categories %}
{% if category == "Softwareentwicklung" %}
<span class="adesso-blog-category softwaredev">{{ category }}</span>
{% endif %}
{% if category == "Microsoft" %}
<span class="adesso-blog-category microsoft">{{ category }}</span>
{% endif %}
{% if category == "Java" %}
<span class="adesso-blog-category java">{{ category }}</span>
{% endif %}
{% if category == "Methodik" %}
<span class="adesso-blog-category methodik">{{ category }}</span>
{% endif %}
{% if category == "Architektur" %}
<span class="adesso-blog-category architecture">{{ category }}</span>
{% endif %}
{% if category == "Branchen & People" %}
<span class="adesso-blog-category bap">{{ category }}</span>
{% endif %}
{% endfor %}
{% endif %}
<div class="blog-elem-header">
<div class="blog-elem-info">
<p class="adesso-date">{{ post.date | date: "%d.%m.%Y" }}
<span class="adesso-location">von {{ author.first_name }} {{ author.last_name }}</span>
</p>
<h2>
<a href="{{post.url | prepend:site.baseurl }}">{{ post.title }}</a>
</h2>
</div>
<div class="blog-author">
<img class="img-circle center-block adesso-3-8" src="{{ author.avatar_url | prepend: site.baseurl }}" alt=" ">
</div>
</div>
<div class="blog-elem-content">
<p>
Über Auslöser und Auswirkungen der Digitalen Transformation haben Experten bereits unzählige Beiträge veröffentlicht. Im
Tagesrhythmus erscheinen neue Studien, die wahlweise auf potenzielle Gefahren oder gefährdete Potenziale
hinweisen. Analysten sind in einen Wettstreit eingetreten, wer die extremsten digitalen Szenarien
für Wirtschaft und Gesellschaft entwirft.
</p>
<a class="blog-button" href="{{post.url | prepend:site.baseurl }}">
<svg class="adesso-arrow-icon">
<use xlink:href="#adesso--arrowlink" />
</svg>
<p>WEITERLESEN</p>
</a>
</div>
</div>
{% endif %}
{% endfor %}
<!-- Pagination links -->
{% include paginator.html %}
<!-- TODO -->
</div>
</div>