forked from M-Labs/web2019
fix(website): Applies various changes
- updates config - changes typo ARTIQ - decrease logos size on mobile for ARTIQ - adds robots.txt and disallow robot (meta too)
This commit is contained in:
parent
ee2fdd78d1
commit
40e2feaac4
|
@ -1,6 +1,6 @@
|
||||||
base_url = "m-labs.hk"
|
base_url = "/"
|
||||||
title = "System-on-chip design capable of running MilkDrop"
|
title = "M-Labs"
|
||||||
description = "M-Labs has varied activities. One of them is ARTIQ, a leading-edge open source control system for quantum information experiments"
|
description = ""
|
||||||
|
|
||||||
compile_sass = true
|
compile_sass = true
|
||||||
highlight_code = true
|
highlight_code = true
|
||||||
|
|
|
@ -4,7 +4,7 @@ sort_by = "weight"
|
||||||
+++
|
+++
|
||||||
|
|
||||||
Experiment control
|
Experiment control
|
||||||
- Artiq
|
- ARTIQ
|
||||||
- Sinara
|
- Sinara
|
||||||
|
|
||||||
Gateware
|
Gateware
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
+++
|
+++
|
||||||
title = "Artiq"
|
title = "ARTIQ"
|
||||||
weight = 1
|
weight = 1
|
||||||
+++
|
+++
|
||||||
|
|
||||||
|
|
|
@ -25,6 +25,7 @@ h3, h2 {
|
||||||
align-items: center;
|
align-items: center;
|
||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
img {
|
img {
|
||||||
|
width: 150px;
|
||||||
padding: .8rem;
|
padding: .8rem;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -73,6 +74,14 @@ h3, h2 {
|
||||||
.card-gateware {
|
.card-gateware {
|
||||||
background: #fff url("../images/gateware@2x.png") no-repeat top right;
|
background: #fff url("../images/gateware@2x.png") no-repeat top right;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.logos-centered {
|
||||||
|
p {
|
||||||
|
img {
|
||||||
|
width: 200px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Extra large devices (large desktops, 1200px and up)
|
// Extra large devices (large desktops, 1200px and up)
|
||||||
|
|
|
@ -9,6 +9,8 @@
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||||
|
|
||||||
|
<meta name="robots" content="noindex">
|
||||||
|
|
||||||
<meta property="og:type" content="website">
|
<meta property="og:type" content="website">
|
||||||
{% block ogtitle %}
|
{% block ogtitle %}
|
||||||
<meta property="og:title" content="{% block og_title%}{{ config.title }}{% endblock %}">
|
<meta property="og:title" content="{% block og_title%}{{ config.title }}{% endblock %}">
|
||||||
|
|
|
@ -0,0 +1,2 @@
|
||||||
|
User-agent: *
|
||||||
|
Disallow: /
|
Loading…
Reference in New Issue