{"id":1069,"date":"2015-07-30T07:07:46","date_gmt":"2015-07-30T07:07:46","guid":{"rendered":"http:\/\/www.honobono-life.info\/wpeng\/?p=1069"},"modified":"2015-07-30T07:07:46","modified_gmt":"2015-07-30T07:07:46","slug":"static_pages-navigation-menu-link","status":"publish","type":"post","link":"http:\/\/www.honobono-life.info\/wpeng\/static_pages-navigation-menu-link\/","title":{"rendered":"Ruby on Rails Tutorial static pages,navigation menu link"},"content":{"rendered":"<p><strong>(1)Rails layout file<\/strong><\/p>\r\n\r\n<p>*Bootstrap3 &quot;container&quot;<\/p>\r\n\r\n<p>$ vi app\/views\/layouts\/application.html.erb<\/p>\r\n\r\n<pre class=\"prettyprint\">\r\n&lt;body&gt;\r\n&lt;%= render &#39;layouts\/header&#39; %&gt;\r\n&lt;div class=&quot;container&quot;&gt;\r\n  &lt;div ng-view&gt;&lt;\/div&gt;\r\n  &lt;%= render &#39;layouts\/footer&#39; %&gt;\r\n&lt;\/div&gt;\r\n\r\n&lt;\/body&gt;<\/pre>\r\n\r\n<p><strong>(2)static pages<\/strong><\/p>\r\n\r\n<p><strong>1)home<\/strong><\/p>\r\n\r\n<p>*Bootstrap3 Jumbotron, text-center<br \/>\r\n*rails.png app\/assets\/images\/rails.png<br \/>\r\nref.http:\/\/rubyonrails.org\/images\/rails.png<\/p>\r\n\r\n<p>$ vi app\/assets\/templates\/static_pages\/home.html.erb<\/p>\r\n\r\n<pre class=\"prettyprint\">\r\n&lt;div class=&quot;jumbotron&quot;&gt;\r\n  &lt;h1&gt;Welcome to the Sample App&lt;\/h1&gt;\r\n  &lt;p class=&quot;text-center&quot;&gt;\r\n    This is the home page for the\r\n    &lt;a href=&quot;http:\/\/railstutorial.jp\/&quot;&gt;Ruby on Rails Tutorial&lt;\/a&gt;\r\n    sample application.\r\n  &lt;\/p&gt;\r\n&lt;\/div&gt;\r\n&lt;a href=&quot;http:\/\/rubyonrails.org\/&quot;&gt;&lt;img alt=&quot;Rails&quot; src=&quot;\/assets\/rails.png&quot; \/&gt;&lt;\/a&gt;<\/pre>\r\n\r\n<p><strong>2)help<\/strong><\/p>\r\n\r\n<p>$ vi app\/assets\/templates\/static_pages\/help.html.erb<\/p>\r\n\r\n<pre class=\"prettyprint\">\r\n&lt;h1 class=&quot;text-center&quot;&gt;Help&lt;\/h1&gt;\r\n&lt;p&gt;\r\n  Get help on the Ruby on Rails Tutorial at the\r\n  &lt;a href=&quot;http:\/\/railstutorial.jp\/help&quot;&gt;Rails Tutorial help page&lt;\/a&gt;.\r\n  To get help on this sample app, see the\r\n  &lt;a href=&quot;http:\/\/railstutorial.jp\/book&quot;&gt;Rails Tutorial book&lt;\/a&gt;.\r\n&lt;\/p&gt;<\/pre>\r\n\r\n<p><strong>3)about<\/strong><\/p>\r\n\r\n<p>$ vi app\/assets\/templates\/static_pages\/about.html.erb<\/p>\r\n\r\n<pre class=\"prettyprint\">\r\n&lt;h1 class=&quot;text-center&quot;&gt;About Us&lt;\/h1&gt;\r\n&lt;p&gt;\r\n  The &lt;a href=&quot;http:\/\/railstutorial.org\/&quot;&gt;Ruby on Rails Tutorial&lt;\/a&gt;\r\n  is a project to make a book and screencasts to teach web development\r\n  with &lt;a href=&quot;http:\/\/rubyonrails.org\/&quot;&gt;Ruby on Rails&lt;\/a&gt;. This\r\n  is the sample application for the tutorial.\r\n&lt;\/p&gt;<\/pre>\r\n\r\n<p><strong>4)contact<\/strong><\/p>\r\n\r\n<p>$ vi app\/assets\/templates\/static_pages\/contact.html.erb<\/p>\r\n\r\n<pre class=\"prettyprint\">\r\n&lt;h1 class=&quot;text-center&quot;&gt;Contact&lt;\/h1&gt;\r\n&lt;p&gt;\r\n  Contact Ruby on Rails Tutorial about the sample app at the\r\n  &lt;a href=&quot;http:\/\/railstutorial.jp\/contact&quot;&gt;contact page&lt;\/a&gt;.\r\n&lt;\/p&gt;<\/pre>\r\n\r\n<p><strong>(3)navigation menu link<\/strong><\/p>\r\n\r\n<p><strong>1)header<\/strong><\/p>\r\n\r\n<p>$ vi app\/views\/layouts\/_header.html.erb<\/p>\r\n\r\n<p><strong>1.site<\/strong><\/p>\r\n\r\n<p>&lt;%= link_to &quot;Sample App&quot;, &quot;\/static_pages\/home&quot;, class: &quot;navbar-brand&quot; %&gt;<\/p>\r\n\r\n<p><strong>2.home,help<\/strong><\/p>\r\n\r\n<pre class=\"prettyprint\">\r\n&lt;ul class=&quot;nav navbar-nav navbar-right&quot;&gt;\r\n  &lt;li&gt;&lt;%= link_to &quot;Home&quot;, &quot;\/static_pages\/home&quot; %&gt;&lt;\/li&gt;\r\n  &lt;li&gt;&lt;%= link_to &quot;Help&quot;, &quot;\/static_pages\/help&quot; %&gt;&lt;\/li&gt;\r\n&lt;\/ul&gt;<\/pre>\r\n\r\n<p><strong>2)footer<\/strong><\/p>\r\n\r\n<p>$ vi app\/views\/layouts\/_footer.html.erb<\/p>\r\n\r\n<pre class=\"prettyprint\">\r\n&lt;ul class=&quot;nav nav-pills pull-right&quot;&gt;\r\n  &lt;li&gt;&lt;%= link_to &quot;About&quot;, &quot;\/static_pages\/about&quot; %&gt;&lt;\/li&gt;\r\n  &lt;li&gt;&lt;%= link_to &quot;Contact&quot;, &quot;\/static_pages\/contact&quot; %&gt;&lt;\/li&gt;\r\n  &lt;li&gt;&lt;a href=&quot;http:\/\/news.railstutorial.org\/&quot;&gt;News&lt;\/a&gt;&lt;\/li&gt;\r\n&lt;\/ul&gt;<\/pre>\r\n\r\n<p>&nbsp;<\/p>\r\n","protected":false},"excerpt":{"rendered":"<p>(1)Rails layout file *Bootstrap3 &quot;container&quot; $ vi app\/views\/layouts\/application.html.erb &lt;body&gt; &lt;%= render &#39;layouts\/header&#39; %&gt; &lt;div class=&quot;container&quot;&gt; &lt;div ng-view&gt;&lt;\/div&gt; &lt;%= render &#39;layouts\/footer&#39; %&gt; &lt;\/div&gt; &lt;\/body&gt; (2)static pages 1)home *Bootstrap3 Jumbotron, text-center *rails.png app\/assets\/images\/rails.png ref.http:\/\/rubyonrails.org\/images\/rails.png $ vi app\/assets\/templates\/static_pages\/home.html.erb &lt;div class=&quot;jumbotron&quot;&gt; &lt;h1&gt;Welcome to the Sample App&lt;\/h1&gt; &lt;p class=&quot;text-center&quot;&gt; This is the home page for the &lt;a href=&quot;http:\/\/railstutorial.jp\/&quot;&gt;Ruby on Rails [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[137],"tags":[82,145,144],"amp_enabled":true,"_links":{"self":[{"href":"http:\/\/www.honobono-life.info\/wpeng\/wp-json\/wp\/v2\/posts\/1069"}],"collection":[{"href":"http:\/\/www.honobono-life.info\/wpeng\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"http:\/\/www.honobono-life.info\/wpeng\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"http:\/\/www.honobono-life.info\/wpeng\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"http:\/\/www.honobono-life.info\/wpeng\/wp-json\/wp\/v2\/comments?post=1069"}],"version-history":[{"count":1,"href":"http:\/\/www.honobono-life.info\/wpeng\/wp-json\/wp\/v2\/posts\/1069\/revisions"}],"predecessor-version":[{"id":1070,"href":"http:\/\/www.honobono-life.info\/wpeng\/wp-json\/wp\/v2\/posts\/1069\/revisions\/1070"}],"wp:attachment":[{"href":"http:\/\/www.honobono-life.info\/wpeng\/wp-json\/wp\/v2\/media?parent=1069"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/www.honobono-life.info\/wpeng\/wp-json\/wp\/v2\/categories?post=1069"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/www.honobono-life.info\/wpeng\/wp-json\/wp\/v2\/tags?post=1069"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}