mirror of
https://github.com/seigler/dash-website
synced 2025-07-26 23:06:09 +00:00
Fix/html (#13)
* Remove style-guide from i18n builds * Remove uncategorized from CN blog posts. * Team images and alt attributes. * Fixing language linkage * Ignore missing or empty alt tags * ignore sass-cache * fix gitignore for sass-cache * fix gitignore for sass-cache * Only show language dropdown if the page is not a post (blog) * New url with site.lang included. * Removed the site.baseurl var from the posts.
This commit is contained in:
parent
5ee9ae4de9
commit
ad056aa1cb
136 changed files with 189 additions and 172 deletions
|
@ -8,11 +8,11 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
|
||||
|
||||
<link rel="icon" type="image/png" sizes="16x16" href="{{ base }}/assets/img/favicon/favicon-16x16.png">
|
||||
<link rel="icon" type="image/png" sizes="16x16" href="/assets/img/favicon/favicon-16x16.png">
|
||||
<meta name="msapplication-TileColor" content="#ffffff">
|
||||
<meta name="theme-color" content="#ffffff">
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="{{ base }}/assets/css/style.css">
|
||||
<link rel="stylesheet" type="text/css" href="/assets/css/style.css">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
@ -26,7 +26,7 @@
|
|||
|
||||
<!-- Mobile Nav -->
|
||||
<div class="overlay" id="overlay">
|
||||
<a href="/"><img src="{{ base }}/assets/img/logo-white.png" alt="Dash" class="logo"></a>
|
||||
<a href="/"><img src="/assets/img/logo-white.png" alt="Dash" class="logo"></a>
|
||||
{% include nav-mobile.html %}
|
||||
</div>
|
||||
|
||||
|
@ -34,8 +34,8 @@
|
|||
<script src="//cdn.jsdelivr.net/lodash/4.12.0/lodash.min.js"></script>
|
||||
<script src='//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script>
|
||||
<script src='//cdnjs.cloudflare.com/ajax/libs/jquery.matchHeight/0.7.0/jquery.matchHeight-min.js'></script>
|
||||
<script src="{{ base }}/assets/js/moment.min.js"></script>
|
||||
<script src="{{ base }}/assets/js/full-menu.js"></script>
|
||||
<script src="/assets/js/moment.min.js"></script>
|
||||
<script src="/assets/js/full-menu.js"></script>
|
||||
|
||||
<script>
|
||||
function formatNumber (num) {
|
||||
|
|
|
@ -25,7 +25,7 @@ layout: default
|
|||
<!-- limit:4 -->
|
||||
<div class="feature">
|
||||
|
||||
<h3><a href="{{ post.url }}">{{ post.title }}</a></h3>
|
||||
<h3><a href="{{ basenav }}{{ post.url }}">{{ post.title }}</a></h3>
|
||||
|
||||
<p><em>{{ post.date | date: "%b %d, %Y" }}</em><br />{{ post.excerpt | strip_html | truncatewords: 10 }}</p>
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue