material-design-lite
material-design-lite copied to clipboard
blog / index.html / images = No touch folder for chrome-touch-icon and ms-touch-icon
mdl 1.0.2
Link to chrome-touch-icon fails to load.
mdl-templates.zip/templates/blog/index.html
<link rel="icon" sizes="192x192" href="images/touch/chrome-touch-icon-192x192.png">
<!-- Tile icon for Win8 (144x144 + tile color) -->
<meta name="msapplication-TileImage" content="images/touch/ms-touch-icon-144x144-precomposed.png">
There is no touch folder inside images. Files are also not in images.
It appears that you are trying to use icons with the link and meta tags in the index.html file of a blog template, but the icons are not being displayed or are failing to load. Based on the code you provided, it looks like the icons are being referred to using href and content attributes that point to files inside the images/touch directory. However, you mentioned that there is no touch directory inside the images directory and that the icon files are not in the images directory.
To fix this issue, you will need to ensure that the icon files are placed in the correct location and that the href and content attributes in the link and meta tags are pointing to the correct location of the icon files. You may need to create the touch directory inside the images directory, or you may need to modify the path of the icon files in the href and content attributes to match the actual location of the icon files.
It's also a good idea to check the web server logs or the developer console in your web browser to see if there are any error messages related to the failure to load the icon files. This can help you to identify any additional issues that may be preventing the icon files from being displayed.