Fixed HTML markup errors
This commit is contained in:
parent
6bcd6b927b
commit
4b1fa03b8a
3 changed files with 9 additions and 3 deletions
|
@ -1,5 +1,5 @@
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html>
|
<html lang="en">
|
||||||
{% include head.html %}
|
{% include head.html %}
|
||||||
<body>
|
<body>
|
||||||
<header class="header">
|
<header class="header">
|
||||||
|
|
|
@ -4,7 +4,13 @@ layout: main
|
||||||
|
|
||||||
<div class="homequote">
|
<div class="homequote">
|
||||||
<figure>
|
<figure>
|
||||||
<img width="300" height="460" src="images/claudio.jpg" />
|
<img
|
||||||
|
width="300"
|
||||||
|
height="460"
|
||||||
|
src="images/claudio.jpg"
|
||||||
|
alt="Me eating
|
||||||
|
raclette"
|
||||||
|
/>
|
||||||
</figure>
|
</figure>
|
||||||
<div class="quote">
|
<div class="quote">
|
||||||
<p>
|
<p>
|
||||||
|
|
|
@ -25,7 +25,7 @@ permalink: /portfolio/
|
||||||
<div class="images">
|
<div class="images">
|
||||||
{% for img in p.images %}
|
{% for img in p.images %}
|
||||||
<a target="_blank" href="/images/portfolio/{{ img }}">
|
<a target="_blank" href="/images/portfolio/{{ img }}">
|
||||||
<img src="/images/portfolio/{{ img }}"
|
<img src="/images/portfolio/{{ img }}" alt="{{ img }}"
|
||||||
/></a>
|
/></a>
|
||||||
|
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
|
Loading…
Reference in a new issue