2017-05-19 10 views
0

私はこの無料のテンプレートで作業していて、とても素晴らしいですが、ポートフォリオページに到達すると、困惑しました。 HTMLコードは以下の通りです:HTMLファイルが見つかりません#!portfolio-item-2.html

<div class="item col-md-3 col-sm-4 col-xs-6" data-groups='["photography", "web", "video"]'> 
 
    <a href="#!portfolio-item-2.html" class="hover-overlay"> 
 
    <img alt="Project 2" src="images/portfolio/preview/2.jpg" /> 
 
    <div class="overlay background-90-a"> 
 
     <div class="hidden-xs"> 
 
     <p class="title heading-a">YouTube Video</p> 
 
     <p class="text-center heading-a"><strong>Excepteur sint lorem ipsum dolor sit amet consectetur.</strong></p> 
 
     <p class="text-center"><i class="fa fa-youtube-square heading-a"></i></p> 
 
     </div>

<a ref...>語る部分は、私はテンプレートドキュメントで見つけることができないようなHTMLファイル(ポートフォリオ項目-2.html)を指し、

どうすればよいですか?

+0

はにリンクしていないhtmlコードされているファイルのためであります –

答えて

0

あなたは#!を使用しています。 hrefで。これを試してみてください :私は問題を持ってい

<div class="item col-md-3 col-sm-4 col-xs-6" data-groups='["photography", "web", "video"]'> 
 
\t \t \t \t \t \t \t \t \t \t <a href="portfolio-item-2.html" class="hover-overlay"> 
 
\t \t \t \t \t \t \t \t \t \t \t <img alt="Project 2" src="images/portfolio/preview/2.jpg" /> 
 
\t \t \t \t \t \t \t \t \t \t \t <div class="overlay background-90-a"> 
 
\t \t \t \t \t \t \t \t \t \t \t \t <div class="hidden-xs"> 
 
\t \t \t \t \t \t \t \t \t \t \t \t \t <p class="title heading-a">YouTube Video</p> 
 
\t \t \t \t \t \t \t \t \t \t \t \t \t <p class="text-center heading-a"><strong>Excepteur sint lorem ipsum dolor sit amet consectetur.</strong></p> 
 
\t \t \t \t \t \t \t \t \t \t \t \t \t <p class="text-center"><i class="fa fa-youtube-square heading-a"></i></p> 
 
\t \t \t \t \t \t \t \t \t \t \t \t </div> 
 
Run code snippetCopy snippet to answerHide results