缺少移动导航栏 - github 页铱星模板
mobile nav bar absent - github pages iridium template
我正在使用知识共享 template for my github pages. However, while the mobile version of the template shows the navigation in the upper left hand corner, the mobile version of my github page does not. Any suggestions? Code for my version is on my github. This began as soon as I committed the template to my pages, and an unaltered template on my github pages is viewable here(以显示没有导航)。
谢谢!
最初我认为问题与脚本标签的顺序有关,但在查看控制台时您似乎遇到了一些错误 (Mixed Content: The page at 'https://brandonlind.github.io/' was loaded over HTTPS
)。我会尝试在您的脚本链接中添加 "s" http:// to https://
.
尝试更改:
<script>"http://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<link href='http://fonts.googleapis.com/css?family=Arimo:400,700' rel='stylesheet' type='text/css'>
至:
<script>"https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<link href='https://fonts.googleapis.com/css?family=Arimo:400,700' rel='stylesheet' type='text/css'>
我不是 100% 确定这会解决问题,但我认为它可能会有所帮助。
如果它不能正确读取 jquery 脚本标签,那么它将能够读取其他脚本标签。
我正在使用知识共享 template for my github pages. However, while the mobile version of the template shows the navigation in the upper left hand corner, the mobile version of my github page does not. Any suggestions? Code for my version is on my github. This began as soon as I committed the template to my pages, and an unaltered template on my github pages is viewable here(以显示没有导航)。
谢谢!
最初我认为问题与脚本标签的顺序有关,但在查看控制台时您似乎遇到了一些错误 (Mixed Content: The page at 'https://brandonlind.github.io/' was loaded over HTTPS
)。我会尝试在您的脚本链接中添加 "s" http:// to https://
.
尝试更改:
<script>"http://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<link href='http://fonts.googleapis.com/css?family=Arimo:400,700' rel='stylesheet' type='text/css'>
至:
<script>"https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<link href='https://fonts.googleapis.com/css?family=Arimo:400,700' rel='stylesheet' type='text/css'>
我不是 100% 确定这会解决问题,但我认为它可能会有所帮助。 如果它不能正确读取 jquery 脚本标签,那么它将能够读取其他脚本标签。