http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/89c943e1/develop/os/core_os/mbuf/mbuf/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/mbuf/mbuf/index.html 
b/develop/os/core_os/mbuf/mbuf/index.html
index 42694f3..181fe78 100644
--- a/develop/os/core_os/mbuf/mbuf/index.html
+++ b/develop/os/core_os/mbuf/mbuf/index.html
@@ -10,15 +10,14 @@
         <link rel="canonical" 
href="http://mynewt.apache.org/os/core_os/mbuf/mbuf/";> -->
         <link rel="shortcut icon" href="../../../../img/favicon.ico">
 
-       <title>toc - Apache Mynewt</title>
+           <title>toc - Apache Mynewt</title>
 
         <link href="../../../../css/bootstrap-3.0.3.min.css" rel="stylesheet">
-        <link href="../../../../css/font-awesome-4.0.3.css" rel="stylesheet">
         <link rel="stylesheet" href="../../../../css/highlight.css">
         <link href="../../../../css/base.css" rel="stylesheet">
         <link href="../../../../css/custom.css" rel="stylesheet">
         <link href="../../../../css/v2.css" rel="stylesheet">
-        <link 
href='https://fonts.googleapis.com/css?family=Roboto:400,500,700,900,300,100' 
rel='stylesheet' type='text/css'>
+        <link href="https://fonts.googleapis.com/css?family=Lato"; 
rel="stylesheet">
         <link rel="stylesheet" 
href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css";>
         <link href="../../../../extra.css" rel="stylesheet">
 
@@ -45,6 +44,16 @@
     <body class="toc">
 
 
+        <div class="container">
+    <div class="row v2-main-banner">
+        <div class="col-xs-12 v2-vcenter">
+            <a href="/"><img class="logo" src="/img/logo.png"></a>
+
+            <h4 class="tagline">An OS to build, deploy and securely manage 
billions of devices</h4>
+        </div>
+    </div>
+</div>
+
         
 
 
@@ -52,7 +61,7 @@
 
 
 
-<nav id="navbar" class="navbar navbar-inverse navbar-fixed-top" 
role="navigation">
+<nav id="navbar" class="navbar navbar-inverse affix-top" data-spy="affix" 
data-offset-top="150" role="navigation">
     <div class="container">
         <!-- Collapsed navigation -->
         <div class="navbar-header">
@@ -73,7 +82,7 @@
                 <li 
   class=""
 >
-                    <a href="/">Home</a>
+                    <a href="/"><i class="fa fa-home" style="font-size: 
larger;"></i></a>
                 </li>
                 <li 
   class="important"
@@ -86,6 +95,11 @@
                     <a href="/about/">About</a>
                 </li>
                 <li 
+  class=""
+>
+                    <a href="/talks/">Talks</a>
+                </li>
+                <li 
   class="active"
 >
                     <a href="/latest/os/introduction">Documentation</a>
@@ -120,9 +134,8 @@
         <div class="container">
             
                 <div class="row">
-                    <div class="col-md-3 v2-sidebar"><div id="docSidebar" 
class="hidden-print" role="complementary">
+                    <div class="col-md-3 v2-sidebar sidebar-container"><div 
id="docSidebar" class="hidden-print" role="complementary">
     <div class="top">
-        <img class="hidden-xs hidden-sm logo-small" src="/img/logo.svg" 
alt="MyNewt" title="MyNewt">
         <div role="search">
             <form id="rtd-search-form" class="wy-form" 
action="../../../../search.html" method="get">
                 <div class="form-group">
@@ -139,14 +152,14 @@
       value="/develop/os/introduction"
       selected="selected"
     >
-      Version: develop
+      Version: develop (latest)
     </option>
     
     <option
       value="/v0_9_0/os/introduction"
       
     >
-      Version: 0.9.0 (latest)
+      Version: 0.9.0
     </option>
     
 </select>
@@ -165,6 +178,10 @@
         
       
         
+      
+        
+      
+        
           
   
   
@@ -658,14 +675,9 @@
     </ul>
 </div></div>
 
-                    <div class="show-sidebar-container">
-                        <button class="show-sidebar">Docs Menu</button>
-                    </div>
-
                     <div class="col-md-9" role="main">
-                        <div class="row doc-header">
-                            <div class="col-sm-12">
-                                <div role="navigation" aria-label="breadcrumbs 
navigation">
+                        <div class="doc-header">
+                            <div role="navigation" aria-label="breadcrumbs 
navigation">
   <ul class="wy-breadcrumbs pull-right">
     <li><a href="/develop/os/introduction">Docs</a></li>
     
@@ -683,7 +695,6 @@
     
   </ul>
 </div>
-                            </div>
                         </div>
                         
                             <h1 id="mbufs">Mbufs</h1>
@@ -692,26 +703,26 @@
 <h3 id="why-use-mbufs">Why use mbufs?</h3>
 <p>The main reason is to conserve memory. Consider a networking protocol that 
generally sends small packets but occasionally sends large ones. The Bluetooth 
Low Energy (BLE) protocol is one such example. A flat buffer would need to be 
sized so that the maximum packet size could be contained by the buffer. With 
the mbuf, a number of mbufs can be chained together so that the occasional 
large packet can be handled while leaving more packet buffers available to the 
networking stack for smaller packets.</p>
 <h3 id="packet-header-mbuf">Packet Header mbuf</h3>
-<p>Not all mbufs are created equal. The first mbuf in a chain of mbufs is a 
special mbuf called a "packet header mbuf". The reason that this mbuf is 
special is that it contains the length of all the data contained by the chain 
of mbufs (the packet length, in other words). The packet header mbuf may also 
contain a user defined structure (called a "user header") so that networking 
protocol specific information can be conveyed to various layers of the 
networking stack. Any mbufs that are part of the packet (i.e. in the mbuf chain 
but not the first one) are "normal" (i.e. non-packet header) mbufs. A normal 
mbuf does not have any packet header or user packet header structures in them; 
they only contain the basic mbuf header (<code>struct os_mbuf</code>). Figure 1 
illustrates these two types of mbufs. Note that the numbers/text in parentheses 
denote the size of the structures/elements (in bytes) and that MBLEN is the 
memory block length of the memory pool used by the mbuf pool.</p>
+<p>Not all mbufs are created equal. The first mbuf in a chain of mbufs is a 
special mbuf called a "packet header mbuf". The reason that this mbuf is 
special is that it contains the length of all the data contained by the chain 
of mbufs (the packet length, in other words). The packet header mbuf may also 
contain a user defined structure (called a "user header") so that networking 
protocol specific information can be conveyed to various layers of the 
networking stack. Any mbufs that are part of the packet (i.e. in the mbuf chain 
but not the first one) are "normal" (i.e. non-packet header) mbufs. A normal 
mbuf does not have any packet header or user packet header structures in them; 
they only contain the basic mbuf header (<code>struct os_mbuf</code>). Figure 1 
illustrates these two types of mbufs. Note that the numbers/text in parentheses 
denote the size of the structures/elements (in bytes) and that 
<code>MBLEN</code> is the memory block length of the memory pool used by the 
mbuf poo
 l.</p>
 <p><img alt="Packet header mbuf" src="../pics/mbuf_fig1.png" /></p>
 <h3 id="normal-mbuf">Normal mbuf</h3>
 <p>Now let's take a deeper dive into the mbuf structure. Figure 2 illustrates 
a normal mbuf and breaks out the various fields in the <code>os_mbuf</code> 
structure. </p>
 <ul>
-<li>The <em>om_data</em> field is a pointer to where the data starts inside 
the data buffer. Typically, mbufs that are allocated from the mbuf pool 
(discussed later) have their om_data pointer set to the start of the data 
buffer but there are cases where this may not be desirable (added a protocol 
header to a packet, for example). </li>
-<li>The <em>om_flags</em> field is a set of flags used internally by the mbuf 
library. Currently, no flags have been defined. </li>
-<li>The <em>om_pkthdr_len</em> field is the total length of all packet headers 
in the mbuf. For normal mbufs this is set to 0 as there is no packet or user 
packet headers. For packet header mbufs, this would be set to the length of the 
packet header structure (16) plus the size of the user packet header (if any). 
Note that it is this field which differentiates packet header mbufs from normal 
mbufs (i.e. if <em>om_pkthdr_len</em> is zero, this is a normal mbuf; otherwise 
it is a packet header mbuf). </li>
-<li>The <em>om_len</em> field contains the amount of user data in the data 
buffer. When initially allocated, this field is 0 as there is no user data in 
the mbuf. </li>
-<li>The <em>omp_pool</em> field is a pointer to the pool from which this mbuf 
has been allocated. This is used internally by the mbuf library. </li>
-<li>The <em>omp_next</em> field is a linked list element which is used to 
chain mbufs.</li>
+<li>The <code>om_data</code> field is a pointer to where the data starts 
inside the data buffer. Typically, mbufs that are allocated from the mbuf pool 
(discussed later) have their <code>om_data</code> pointer set to the start of 
the data buffer but there are cases where this may not be desirable (added a 
protocol header to a packet, for example). </li>
+<li>The <code>om_flags</code> field is a set of flags used internally by the 
mbuf library. Currently, no flags have been defined. </li>
+<li>The <code>om_pkthdr_len</code> field is the total length of all packet 
headers in the mbuf. For normal mbufs this is set to 0 as there is no packet or 
user packet headers. For packet header mbufs, this would be set to the length 
of the packet header structure (16) plus the size of the user packet header (if 
any). Note that it is this field which differentiates packet header mbufs from 
normal mbufs (i.e. if <code>om_pkthdr_len</code> is zero, this is a normal 
mbuf; otherwise it is a packet header mbuf). </li>
+<li>The <code>om_len</code> field contains the amount of user data in the data 
buffer. When initially allocated, this field is 0 as there is no user data in 
the mbuf. </li>
+<li>The <code>omp_pool</code> field is a pointer to the pool from which this 
mbuf has been allocated. This is used internally by the mbuf library. </li>
+<li>The <code>omp_next</code> field is a linked list element which is used to 
chain mbufs.</li>
 </ul>
-<p>Figure 2 also shows a normal mbuf with actual values in the 
<code>os_mbuf</code> structure. This mbuf starts at address 0x1000 and is 256 
bytes in total length. In this example, the user has copied 33 bytes into the 
data buffer starting at address 0x1010 (this is where om_data points). Note 
that the packet header length in this mbuf is 0 as it is not a packet header 
mbuf.</p>
+<p>Figure 2 also shows a normal mbuf with actual values in the 
<code>os_mbuf</code> structure. This mbuf starts at address 0x1000 and is 256 
bytes in total length. In this example, the user has copied 33 bytes into the 
data buffer starting at address 0x1010 (this is where <code>om_data</code> 
points). Note that the packet header length in this mbuf is 0 as it is not a 
packet header mbuf.</p>
 <p><img alt="OS mbuf structure" src="../pics/mbuf_fig2.png" /></p>
-<p>Figure 3 illustrates the packet header mbuf along with some chained mbufs 
(i.e a "packet"). In this example, the user header structure is defined to be 8 
bytes. Note that in figure 3 we show a number of different mbufs with varying 
<em>om_data</em> pointers and lengths since we want to show various examples of 
valid mbufs. For all the mbufs (both packet header and normal ones) the total 
length of the memory block is 128 bytes.</p>
+<p>Figure 3 illustrates the packet header mbuf along with some chained mbufs 
(i.e a "packet"). In this example, the user header structure is defined to be 8 
bytes. Note that in figure 3 we show a number of different mbufs with varying 
<code>om_data</code> pointers and lengths since we want to show various 
examples of valid mbufs. For all the mbufs (both packet header and normal ones) 
the total length of the memory block is 128 bytes.</p>
 <p><img alt="Packet" src="../pics/mbuf_fig3.png" /></p>
 <h3 id="mbuf-pools">Mbuf pools</h3>
-<p>Mbufs are collected into "mbuf pools" much like memory blocks. The mbuf 
pool itself contains a pointer to a memory pool. The memory blocks in this 
memory pool are the actual mbufs; both normal and packet header mbufs. Thus, 
the memory block (and corresponding memory pool) must be sized correctly. In 
other words, the memory blocks which make up the memory pool used by the mbuf 
pool must be at least: sizeof(struct os_mbuf) + sizeof(struct os_mbuf_pkthdr) + 
sizeof(struct user_defined_header) + desired minimum data buffer length. For 
example, if the developer wants mbufs to contain at least 64 bytes of user data 
and they have a user header of 12 bytes, the size of the memory block would be 
(at least): 64 + 12 + 16 + 8, or 100 bytes. Yes, this is a fair amount of 
overhead. However, the flexibility provided by the mbuf library usually 
outweighs overhead concerns.</p>
+<p>Mbufs are collected into "mbuf pools" much like memory blocks. The mbuf 
pool itself contains a pointer to a memory pool. The memory blocks in this 
memory pool are the actual mbufs; both normal and packet header mbufs. Thus, 
the memory block (and corresponding memory pool) must be sized correctly. In 
other words, the memory blocks which make up the memory pool used by the mbuf 
pool must be at least: <code>sizeof(struct os_mbuf)</code> + 
<code>sizeof(struct os_mbuf_pkthdr)</code> + <code>sizeof(struct 
user_defined_header)</code> + <em>desired minimum data buffer length</em>. For 
example, if the developer wants mbufs to contain at least 64 bytes of user data 
and they have a user header of 12 bytes, the size of the memory block would be 
(at least): 64 + 12 + 16 + 8, or 100 bytes. Yes, this is a fair amount of 
overhead. However, the flexibility provided by the mbuf library usually 
outweighs overhead concerns.</p>
 <h3 id="create-mbuf-pool">Create mbuf pool</h3>
-<p>Creating an mbuf pool is fairly simple: create a memory pool and then 
create the mbuf pool using that memory pool. Once the developer has determined 
the size of the user data needed per mbuf (this is based on the 
application/networking stack and is outside the scope of this discussion) and 
the size of the user header (if any), the memory blocks can be sized. In the 
example shown below, the application requires 64 bytes of user data per mbuf 
and also allocates a user header (called struct user_hdr). Note that we do not 
show the user header data structure as there really is no need; all we need to 
do is to account for it when creating the memory pool. In the example, we use 
the macro <em>MBUF_PKTHDR_OVERHEAD</em> to denote the amount of packet header 
overhead per mbuf and <em>MBUF_MEMBLOCK_OVERHEAD</em> to denote the total 
amount of overhead required per memory block. The macro <em>MBUF_BUF_SIZE</em> 
is used to denote the amount of payload that the application requires (aligned 
on 
 a 32-bit boundary in this case). All this leads to the total memory block size 
required, denoted by the macro <em>MBUF_MEMBLOCK_OVERHEAD</em>.</p>
+<p>Creating an mbuf pool is fairly simple: create a memory pool and then 
create the mbuf pool using that memory pool. Once the developer has determined 
the size of the user data needed per mbuf (this is based on the 
application/networking stack and is outside the scope of this discussion) and 
the size of the user header (if any), the memory blocks can be sized. In the 
example shown below, the application requires 64 bytes of user data per mbuf 
and also allocates a user header (called <code>struct user_hdr</code>). Note 
that we do not show the user header data structure as there really is no need; 
all we need to do is to account for it when creating the memory pool. In the 
example, we use the macro <code>MBUF_PKTHDR_OVERHEAD</code> to denote the 
amount of packet header overhead per mbuf and 
<code>MBUF_MEMBLOCK_OVERHEAD</code> to denote the total amount of overhead 
required per memory block. The macro <code>MBUF_BUF_SIZE</code> is used to 
denote the amount of payload that the applicat
 ion requires (aligned on a 32-bit boundary in this case). All this leads to 
the total memory block size required, denoted by the macro 
<code>MBUF_MEMBLOCK_OVERHEAD</code>.</p>
 <div class="codehilite" style="background: #ffffff"><pre style="line-height: 
125%"><span style="color: #633820">#define MBUF_PKTHDR_OVERHEAD    
sizeof(struct os_mbuf_pkthdr) + sizeof(struct user_hdr)</span>
 <span style="color: #633820">#define MBUF_MEMBLOCK_OVERHEAD  sizeof(struct 
os_mbuf) + MBUF_PKTHDR_OVERHEAD</span>
 
@@ -771,8 +782,8 @@
 </pre></div>
 
 
-<p>In <code>example2</code> we show use of the pullup api as this illustrates 
some of the typical pitfalls developers encounter when using mbufs. The first 
pitfall is one of alignment/padding. Depending on the processor and/or 
compiler, the sizeof() a structure may vary. Thus, the size of 
<em>my_protocol_header</em> may be different inside the packet data of the mbuf 
than the size of the structure on the stack or as a global variable, for 
instance. While some networking protcols may align protocol information on 
convenient processor boundaries many others try to conserve bytes "on the air" 
(i.e inside the packet data). Typical methods used to deal with this are 
"packing" the structure (i.e. force compiler to not pad) or creating protocol 
headers that do not require padding. <code>example2</code> assumes that one of 
these methods was used when defining the <em>my_protocol_header</em> 
structure.</p>
-<p>Another common pitfall occurs around endianness. A network protocol may be 
little endian or big endian; it all depends on the protocol specification. 
Processors also have an endianness; this means that the developer has to be 
careful that the processor endianness and the protocol endianness are handled 
correctly. In <code>example2</code>, some common networking functions are used: 
<code>ntohs()</code> and <code>ntohl()</code>. These are shorthand for "network 
order to host order, short" and "network order to host order, long". Basically, 
these functions convert data of a certain size (i.e. 16 bits, 32 bits, etc) to 
the endianness of the host. Network byte order is big-endian (most significant 
byte first), so these functions convert big-endian byte order to host order 
(thus, the implementation of these functions is host dependent). Note that the 
BLE networking stack "on the air" format is least signigicant byte first (i.e. 
little endian), so a "bletoh" function would have to take 
 little endian format and convert to host format.</p>
+<p>In <code>example2</code> we show use of the pullup api as this illustrates 
some of the typical pitfalls developers encounter when using mbufs. The first 
pitfall is one of alignment/padding. Depending on the processor and/or 
compiler, the <code>sizeof()</code> a structure may vary. Thus, the size of 
<code>my_protocol_header</code> may be different inside the packet data of the 
mbuf than the size of the structure on the stack or as a global variable, for 
instance. While some networking protcols may align protocol information on 
convenient processor boundaries many others try to conserve bytes "on the air" 
(i.e inside the packet data). Typical methods used to deal with this are 
"packing" the structure (i.e. force compiler to not pad) or creating protocol 
headers that do not require padding. <code>example2</code> assumes that one of 
these methods was used when defining the <code>my_protocol_header</code> 
structure.</p>
+<p>Another common pitfall occurs around endianness. A network protocol may be 
little endian or big endian; it all depends on the protocol specification. 
Processors also have an endianness; this means that the developer has to be 
careful that the processor endianness and the protocol endianness are handled 
correctly. In <code>example2</code>, some common networking functions are used: 
<code>ntohs()</code> and <code>ntohl()</code>. These are shorthand for "network 
order to host order, short" and "network order to host order, long". Basically, 
these functions convert data of a certain size (i.e. 16 bits, 32 bits, etc) to 
the endianness of the host. Network byte order is big-endian (most significant 
byte first), so these functions convert big-endian byte order to host order 
(thus, the implementation of these functions is host dependent). Note that the 
BLE networking stack "on the air" format is least signigicant byte first (i.e. 
little-endian), so a <code>bletoh</code> function would ha
 ve to take little-endian format and convert to host format.</p>
 <p>A long story short: the developer must take care when copying structure 
data to/from mbufs and flat buffers!</p>
 <p>A final note: these examples assume the same mbuf struture and definitions 
used in the first example. </p>
 <div class="codehilite" style="background: #ffffff"><pre style="line-height: 
125%"><span style="color: #A90D91">void</span>
@@ -1062,34 +1073,22 @@
     </li>
 </ul>
                         </div>
-                        <div class="row">
-                            <footer>
-    <div class="row">
-        <div class="col-md-12">
-            
-                <p class="copyright">Copyright &copy; 2015 The Apache Software 
Foundation, Licensed under the Apache License, Version 2.0 Apache and the 
Apache feather logo are trademarks of The Apache Software Foundation.<br>The 
Apache Software Foundation Apache Incubator</p>
-            
-        </div>
-    </div>
-    <div class="copyright-logos">
-        <div class="row">
-            <div class="col-xs-6 text-left">
-                <img src="/img/asf_logo_wide_small.png" alt="Apache" 
title="Apache">
-            </div>
-            <div class="col-xs-6 text-right">
-                <img src="/img/egg-logo2.png" alt="Apache Incubator" 
title="Apache Incubator">
-            </div>
-        </div>
+                        <footer class="row">
+    <div class="col-xs-12">
+        
+            <p class="copyright">Copyright &copy; 2015 The Apache Software 
Foundation, Licensed under the Apache License, Version 2.0 Apache and the 
Apache feather logo are trademarks of The Apache Software Foundation.</p>
+        
     </div>
-    <div class="row">
-        <div class="col-md-12">
+    <div class="col-xs-12">
+        <div class="logos">
+            <img src="/img/asf_logo_wide_small.png" alt="Apache" 
title="Apache">
             <small class="footnote">
                 MyNewt is an effort undergoing incubation at The Apache 
Software Foundation (ASF), sponsored by the Apache Incubator. Incubation is 
required of all newly accepted projects until a further review indicates that 
the infrastructure, communications, and decision making process have stabilized 
in a manner consistent with other successful ASF projects. While incubation 
status is not necessarily a reflection of the completeness or stability of the 
code, it does indicate that the project has yet to be fully endorsed by the ASF.
             </small>
+            <img src="/img/egg-logo2.png" alt="Apache Incubator" title="Apache 
Incubator">
         </div>
     </div>
 </footer>
-                        </div>
                     </div>
                 </div>
             

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/89c943e1/develop/os/core_os/mbuf/os_mbuf_adj/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/mbuf/os_mbuf_adj/index.html 
b/develop/os/core_os/mbuf/os_mbuf_adj/index.html
index 0af8a78..ce30e48 100644
--- a/develop/os/core_os/mbuf/os_mbuf_adj/index.html
+++ b/develop/os/core_os/mbuf/os_mbuf_adj/index.html
@@ -10,15 +10,14 @@
         <link rel="canonical" 
href="http://mynewt.apache.org/os/core_os/mbuf/os_mbuf_adj/";> -->
         <link rel="shortcut icon" href="../../../../img/favicon.ico">
 
-       <title>os_mbuf_adj - Apache Mynewt</title>
+           <title>os_mbuf_adj - Apache Mynewt</title>
 
         <link href="../../../../css/bootstrap-3.0.3.min.css" rel="stylesheet">
-        <link href="../../../../css/font-awesome-4.0.3.css" rel="stylesheet">
         <link rel="stylesheet" href="../../../../css/highlight.css">
         <link href="../../../../css/base.css" rel="stylesheet">
         <link href="../../../../css/custom.css" rel="stylesheet">
         <link href="../../../../css/v2.css" rel="stylesheet">
-        <link 
href='https://fonts.googleapis.com/css?family=Roboto:400,500,700,900,300,100' 
rel='stylesheet' type='text/css'>
+        <link href="https://fonts.googleapis.com/css?family=Lato"; 
rel="stylesheet">
         <link rel="stylesheet" 
href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css";>
         <link href="../../../../extra.css" rel="stylesheet">
 
@@ -45,6 +44,16 @@
     <body class="os_mbuf_adj">
 
 
+        <div class="container">
+    <div class="row v2-main-banner">
+        <div class="col-xs-12 v2-vcenter">
+            <a href="/"><img class="logo" src="/img/logo.png"></a>
+
+            <h4 class="tagline">An OS to build, deploy and securely manage 
billions of devices</h4>
+        </div>
+    </div>
+</div>
+
         
 
 
@@ -52,7 +61,7 @@
 
 
 
-<nav id="navbar" class="navbar navbar-inverse navbar-fixed-top" 
role="navigation">
+<nav id="navbar" class="navbar navbar-inverse affix-top" data-spy="affix" 
data-offset-top="150" role="navigation">
     <div class="container">
         <!-- Collapsed navigation -->
         <div class="navbar-header">
@@ -73,7 +82,7 @@
                 <li 
   class=""
 >
-                    <a href="/">Home</a>
+                    <a href="/"><i class="fa fa-home" style="font-size: 
larger;"></i></a>
                 </li>
                 <li 
   class="important"
@@ -86,6 +95,11 @@
                     <a href="/about/">About</a>
                 </li>
                 <li 
+  class=""
+>
+                    <a href="/talks/">Talks</a>
+                </li>
+                <li 
   class="active"
 >
                     <a href="/latest/os/introduction">Documentation</a>
@@ -120,9 +134,8 @@
         <div class="container">
             
                 <div class="row">
-                    <div class="col-md-3 v2-sidebar"><div id="docSidebar" 
class="hidden-print" role="complementary">
+                    <div class="col-md-3 v2-sidebar sidebar-container"><div 
id="docSidebar" class="hidden-print" role="complementary">
     <div class="top">
-        <img class="hidden-xs hidden-sm logo-small" src="/img/logo.svg" 
alt="MyNewt" title="MyNewt">
         <div role="search">
             <form id="rtd-search-form" class="wy-form" 
action="../../../../search.html" method="get">
                 <div class="form-group">
@@ -139,14 +152,14 @@
       value="/develop/os/introduction"
       selected="selected"
     >
-      Version: develop
+      Version: develop (latest)
     </option>
     
     <option
       value="/v0_9_0/os/introduction"
       
     >
-      Version: 0.9.0 (latest)
+      Version: 0.9.0
     </option>
     
 </select>
@@ -165,6 +178,10 @@
         
       
         
+      
+        
+      
+        
           
   
   
@@ -846,14 +863,9 @@
     </ul>
 </div></div>
 
-                    <div class="show-sidebar-container">
-                        <button class="show-sidebar">Docs Menu</button>
-                    </div>
-
                     <div class="col-md-9" role="main">
-                        <div class="row doc-header">
-                            <div class="col-sm-12">
-                                <div role="navigation" aria-label="breadcrumbs 
navigation">
+                        <div class="doc-header">
+                            <div role="navigation" aria-label="breadcrumbs 
navigation">
   <ul class="wy-breadcrumbs pull-right">
     <li><a href="/develop/os/introduction">Docs</a></li>
     
@@ -873,7 +885,6 @@
     
   </ul>
 </div>
-                            </div>
                         </div>
                         
                             <h2 id="os_mbuf_adj"><font color="#F2853F" 
style="font-size:24pt"> os_mbuf_adj</font></h2>
@@ -881,7 +892,7 @@
 </pre></div>
 
 
-<p>Trims <em>req_len</em> bytes from either the head (if positive) or tail (if 
negative) of an mbuf chain. Adjusts the packet length of the mbuf chain if 
<em>mp</em> points to a packet header mbuf. When trimming from the head, no 
mbufs are freed. When trimming from the tail, any mbufs of zero length left at 
the end of the chain are freed.</p>
+<p>Trims <code>req_len</code> bytes from either the head (if positive) or tail 
(if negative) of an mbuf chain. Adjusts the packet length of the mbuf chain if 
<code>mp</code> points to a packet header mbuf. When trimming from the head, no 
mbufs are freed. When trimming from the tail, any mbufs of zero length left at 
the end of the chain are freed.</p>
 <p><br></p>
 <h4 id="arguments">Arguments</h4>
 <table>
@@ -893,11 +904,11 @@
 </thead>
 <tbody>
 <tr>
-<td>mp</td>
+<td><code>mp</code></td>
 <td>Pointer to mbuf. Can be head of a chain of mbufs, a single mbuf or a 
packet header mbuf</td>
 </tr>
 <tr>
-<td>req_len</td>
+<td><code>req_len</code></td>
 <td>Number of bytes to trim from head or tail of mbuf</td>
 </tr>
 </tbody>
@@ -946,34 +957,22 @@
     </li>
 </ul>
                         </div>
-                        <div class="row">
-                            <footer>
-    <div class="row">
-        <div class="col-md-12">
-            
-                <p class="copyright">Copyright &copy; 2015 The Apache Software 
Foundation, Licensed under the Apache License, Version 2.0 Apache and the 
Apache feather logo are trademarks of The Apache Software Foundation.<br>The 
Apache Software Foundation Apache Incubator</p>
-            
-        </div>
-    </div>
-    <div class="copyright-logos">
-        <div class="row">
-            <div class="col-xs-6 text-left">
-                <img src="/img/asf_logo_wide_small.png" alt="Apache" 
title="Apache">
-            </div>
-            <div class="col-xs-6 text-right">
-                <img src="/img/egg-logo2.png" alt="Apache Incubator" 
title="Apache Incubator">
-            </div>
-        </div>
+                        <footer class="row">
+    <div class="col-xs-12">
+        
+            <p class="copyright">Copyright &copy; 2015 The Apache Software 
Foundation, Licensed under the Apache License, Version 2.0 Apache and the 
Apache feather logo are trademarks of The Apache Software Foundation.</p>
+        
     </div>
-    <div class="row">
-        <div class="col-md-12">
+    <div class="col-xs-12">
+        <div class="logos">
+            <img src="/img/asf_logo_wide_small.png" alt="Apache" 
title="Apache">
             <small class="footnote">
                 MyNewt is an effort undergoing incubation at The Apache 
Software Foundation (ASF), sponsored by the Apache Incubator. Incubation is 
required of all newly accepted projects until a further review indicates that 
the infrastructure, communications, and decision making process have stabilized 
in a manner consistent with other successful ASF projects. While incubation 
status is not necessarily a reflection of the completeness or stability of the 
code, it does indicate that the project has yet to be fully endorsed by the ASF.
             </small>
+            <img src="/img/egg-logo2.png" alt="Apache Incubator" title="Apache 
Incubator">
         </div>
     </div>
 </footer>
-                        </div>
                     </div>
                 </div>
             

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/89c943e1/develop/os/core_os/mbuf/os_mbuf_append/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/mbuf/os_mbuf_append/index.html 
b/develop/os/core_os/mbuf/os_mbuf_append/index.html
index d296916..b1f6895 100644
--- a/develop/os/core_os/mbuf/os_mbuf_append/index.html
+++ b/develop/os/core_os/mbuf/os_mbuf_append/index.html
@@ -10,15 +10,14 @@
         <link rel="canonical" 
href="http://mynewt.apache.org/os/core_os/mbuf/os_mbuf_append/";> -->
         <link rel="shortcut icon" href="../../../../img/favicon.ico">
 
-       <title>os_mbuf_append - Apache Mynewt</title>
+           <title>os_mbuf_append - Apache Mynewt</title>
 
         <link href="../../../../css/bootstrap-3.0.3.min.css" rel="stylesheet">
-        <link href="../../../../css/font-awesome-4.0.3.css" rel="stylesheet">
         <link rel="stylesheet" href="../../../../css/highlight.css">
         <link href="../../../../css/base.css" rel="stylesheet">
         <link href="../../../../css/custom.css" rel="stylesheet">
         <link href="../../../../css/v2.css" rel="stylesheet">
-        <link 
href='https://fonts.googleapis.com/css?family=Roboto:400,500,700,900,300,100' 
rel='stylesheet' type='text/css'>
+        <link href="https://fonts.googleapis.com/css?family=Lato"; 
rel="stylesheet">
         <link rel="stylesheet" 
href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css";>
         <link href="../../../../extra.css" rel="stylesheet">
 
@@ -45,6 +44,16 @@
     <body class="os_mbuf_append">
 
 
+        <div class="container">
+    <div class="row v2-main-banner">
+        <div class="col-xs-12 v2-vcenter">
+            <a href="/"><img class="logo" src="/img/logo.png"></a>
+
+            <h4 class="tagline">An OS to build, deploy and securely manage 
billions of devices</h4>
+        </div>
+    </div>
+</div>
+
         
 
 
@@ -52,7 +61,7 @@
 
 
 
-<nav id="navbar" class="navbar navbar-inverse navbar-fixed-top" 
role="navigation">
+<nav id="navbar" class="navbar navbar-inverse affix-top" data-spy="affix" 
data-offset-top="150" role="navigation">
     <div class="container">
         <!-- Collapsed navigation -->
         <div class="navbar-header">
@@ -73,7 +82,7 @@
                 <li 
   class=""
 >
-                    <a href="/">Home</a>
+                    <a href="/"><i class="fa fa-home" style="font-size: 
larger;"></i></a>
                 </li>
                 <li 
   class="important"
@@ -86,6 +95,11 @@
                     <a href="/about/">About</a>
                 </li>
                 <li 
+  class=""
+>
+                    <a href="/talks/">Talks</a>
+                </li>
+                <li 
   class="active"
 >
                     <a href="/latest/os/introduction">Documentation</a>
@@ -120,9 +134,8 @@
         <div class="container">
             
                 <div class="row">
-                    <div class="col-md-3 v2-sidebar"><div id="docSidebar" 
class="hidden-print" role="complementary">
+                    <div class="col-md-3 v2-sidebar sidebar-container"><div 
id="docSidebar" class="hidden-print" role="complementary">
     <div class="top">
-        <img class="hidden-xs hidden-sm logo-small" src="/img/logo.svg" 
alt="MyNewt" title="MyNewt">
         <div role="search">
             <form id="rtd-search-form" class="wy-form" 
action="../../../../search.html" method="get">
                 <div class="form-group">
@@ -139,14 +152,14 @@
       value="/develop/os/introduction"
       selected="selected"
     >
-      Version: develop
+      Version: develop (latest)
     </option>
     
     <option
       value="/v0_9_0/os/introduction"
       
     >
-      Version: 0.9.0 (latest)
+      Version: 0.9.0
     </option>
     
 </select>
@@ -165,6 +178,10 @@
         
       
         
+      
+        
+      
+        
           
   
   
@@ -846,14 +863,9 @@
     </ul>
 </div></div>
 
-                    <div class="show-sidebar-container">
-                        <button class="show-sidebar">Docs Menu</button>
-                    </div>
-
                     <div class="col-md-9" role="main">
-                        <div class="row doc-header">
-                            <div class="col-sm-12">
-                                <div role="navigation" aria-label="breadcrumbs 
navigation">
+                        <div class="doc-header">
+                            <div role="navigation" aria-label="breadcrumbs 
navigation">
   <ul class="wy-breadcrumbs pull-right">
     <li><a href="/develop/os/introduction">Docs</a></li>
     
@@ -873,7 +885,6 @@
     
   </ul>
 </div>
-                            </div>
                         </div>
                         
                             <h2 id="os_mbuf_append"><font color="#F2853F" 
style="font-size:24pt"> os_mbuf_append</font></h2>
@@ -881,7 +892,7 @@
 </pre></div>
 
 
-<p>Appends a data buffer of length <em>len</em> to the end of an mbuf chain, 
adjusting packet length if <em>om</em> is a packet header mbuf. If not enough 
trailing space exists at the end of the mbuf chain, mbufs are allocated to hold 
the data.</p>
+<p>Appends a data buffer of length <code>len</code> to the end of an mbuf 
chain, adjusting packet length if <code>om</code> is a packet header mbuf. If 
not enough trailing space exists at the end of the mbuf chain, mbufs are 
allocated to hold the data.</p>
 <p><br></p>
 <h4 id="arguments">Arguments</h4>
 <table>
@@ -893,15 +904,15 @@
 </thead>
 <tbody>
 <tr>
-<td>om</td>
+<td><code>om</code></td>
 <td>Pointer to mbuf. Can be head of a chain of mbufs, a single mbuf or a 
packet header mbuf</td>
 </tr>
 <tr>
-<td>data</td>
+<td><code>data</code></td>
 <td>Pointer to data buffer to copy from</td>
 </tr>
 <tr>
-<td>len</td>
+<td><code>len</code></td>
 <td>Number of bytes to copy from data buffer to the end of the mbuf</td>
 </tr>
 </tbody>
@@ -909,13 +920,13 @@
 <p><br></p>
 <h4 id="returned-values">Returned values</h4>
 <p>0: success<br />
-OS_ENOMEM: Could not allocate enough mbufs to hold data.<br />
-OS_EINVAL: <em>om</em> was NULL on entry.</p>
+<code>OS_ENOMEM</code>: Could not allocate enough mbufs to hold data.<br />
+<code>OS_EINVAL</code>: <code>om</code> was <strong>NULL</strong> on entry.</p>
 <p><br></p>
 <h4 id="notes">Notes</h4>
 <p>If not enough mbufs were available the packet header length of the mbuf may 
get adjusted even though the entire data buffer was not appended to the end of 
the mbuf.</p>
 <p><br></p>
-<p>If any mbufs are allocated, they are allocated from the same pool as 
<em>om</em></p>
+<p>If any mbufs are allocated, they are allocated from the same pool as 
<code>om</code></p>
 <p><br></p>
 <h4 id="example">Example</h4>
 <div class="codehilite" style="background: #ffffff"><pre style="line-height: 
125%">    <span style="color: #A90D91">int</span> <span style="color: 
#000000">rc</span>;
@@ -961,34 +972,22 @@ OS_EINVAL: <em>om</em> was NULL on entry.</p>
     </li>
 </ul>
                         </div>
-                        <div class="row">
-                            <footer>
-    <div class="row">
-        <div class="col-md-12">
-            
-                <p class="copyright">Copyright &copy; 2015 The Apache Software 
Foundation, Licensed under the Apache License, Version 2.0 Apache and the 
Apache feather logo are trademarks of The Apache Software Foundation.<br>The 
Apache Software Foundation Apache Incubator</p>
-            
-        </div>
-    </div>
-    <div class="copyright-logos">
-        <div class="row">
-            <div class="col-xs-6 text-left">
-                <img src="/img/asf_logo_wide_small.png" alt="Apache" 
title="Apache">
-            </div>
-            <div class="col-xs-6 text-right">
-                <img src="/img/egg-logo2.png" alt="Apache Incubator" 
title="Apache Incubator">
-            </div>
-        </div>
+                        <footer class="row">
+    <div class="col-xs-12">
+        
+            <p class="copyright">Copyright &copy; 2015 The Apache Software 
Foundation, Licensed under the Apache License, Version 2.0 Apache and the 
Apache feather logo are trademarks of The Apache Software Foundation.</p>
+        
     </div>
-    <div class="row">
-        <div class="col-md-12">
+    <div class="col-xs-12">
+        <div class="logos">
+            <img src="/img/asf_logo_wide_small.png" alt="Apache" 
title="Apache">
             <small class="footnote">
                 MyNewt is an effort undergoing incubation at The Apache 
Software Foundation (ASF), sponsored by the Apache Incubator. Incubation is 
required of all newly accepted projects until a further review indicates that 
the infrastructure, communications, and decision making process have stabilized 
in a manner consistent with other successful ASF projects. While incubation 
status is not necessarily a reflection of the completeness or stability of the 
code, it does indicate that the project has yet to be fully endorsed by the ASF.
             </small>
+            <img src="/img/egg-logo2.png" alt="Apache Incubator" title="Apache 
Incubator">
         </div>
     </div>
 </footer>
-                        </div>
                     </div>
                 </div>
             

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/89c943e1/develop/os/core_os/mbuf/os_mbuf_concat/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/mbuf/os_mbuf_concat/index.html 
b/develop/os/core_os/mbuf/os_mbuf_concat/index.html
index a5a5ba4..58afcd9 100644
--- a/develop/os/core_os/mbuf/os_mbuf_concat/index.html
+++ b/develop/os/core_os/mbuf/os_mbuf_concat/index.html
@@ -10,15 +10,14 @@
         <link rel="canonical" 
href="http://mynewt.apache.org/os/core_os/mbuf/os_mbuf_concat/";> -->
         <link rel="shortcut icon" href="../../../../img/favicon.ico">
 
-       <title>os_mbuf_concat - Apache Mynewt</title>
+           <title>os_mbuf_concat - Apache Mynewt</title>
 
         <link href="../../../../css/bootstrap-3.0.3.min.css" rel="stylesheet">
-        <link href="../../../../css/font-awesome-4.0.3.css" rel="stylesheet">
         <link rel="stylesheet" href="../../../../css/highlight.css">
         <link href="../../../../css/base.css" rel="stylesheet">
         <link href="../../../../css/custom.css" rel="stylesheet">
         <link href="../../../../css/v2.css" rel="stylesheet">
-        <link 
href='https://fonts.googleapis.com/css?family=Roboto:400,500,700,900,300,100' 
rel='stylesheet' type='text/css'>
+        <link href="https://fonts.googleapis.com/css?family=Lato"; 
rel="stylesheet">
         <link rel="stylesheet" 
href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css";>
         <link href="../../../../extra.css" rel="stylesheet">
 
@@ -45,6 +44,16 @@
     <body class="os_mbuf_concat">
 
 
+        <div class="container">
+    <div class="row v2-main-banner">
+        <div class="col-xs-12 v2-vcenter">
+            <a href="/"><img class="logo" src="/img/logo.png"></a>
+
+            <h4 class="tagline">An OS to build, deploy and securely manage 
billions of devices</h4>
+        </div>
+    </div>
+</div>
+
         
 
 
@@ -52,7 +61,7 @@
 
 
 
-<nav id="navbar" class="navbar navbar-inverse navbar-fixed-top" 
role="navigation">
+<nav id="navbar" class="navbar navbar-inverse affix-top" data-spy="affix" 
data-offset-top="150" role="navigation">
     <div class="container">
         <!-- Collapsed navigation -->
         <div class="navbar-header">
@@ -73,7 +82,7 @@
                 <li 
   class=""
 >
-                    <a href="/">Home</a>
+                    <a href="/"><i class="fa fa-home" style="font-size: 
larger;"></i></a>
                 </li>
                 <li 
   class="important"
@@ -86,6 +95,11 @@
                     <a href="/about/">About</a>
                 </li>
                 <li 
+  class=""
+>
+                    <a href="/talks/">Talks</a>
+                </li>
+                <li 
   class="active"
 >
                     <a href="/latest/os/introduction">Documentation</a>
@@ -120,9 +134,8 @@
         <div class="container">
             
                 <div class="row">
-                    <div class="col-md-3 v2-sidebar"><div id="docSidebar" 
class="hidden-print" role="complementary">
+                    <div class="col-md-3 v2-sidebar sidebar-container"><div 
id="docSidebar" class="hidden-print" role="complementary">
     <div class="top">
-        <img class="hidden-xs hidden-sm logo-small" src="/img/logo.svg" 
alt="MyNewt" title="MyNewt">
         <div role="search">
             <form id="rtd-search-form" class="wy-form" 
action="../../../../search.html" method="get">
                 <div class="form-group">
@@ -139,14 +152,14 @@
       value="/develop/os/introduction"
       selected="selected"
     >
-      Version: develop
+      Version: develop (latest)
     </option>
     
     <option
       value="/v0_9_0/os/introduction"
       
     >
-      Version: 0.9.0 (latest)
+      Version: 0.9.0
     </option>
     
 </select>
@@ -165,6 +178,10 @@
         
       
         
+      
+        
+      
+        
           
   
   
@@ -846,14 +863,9 @@
     </ul>
 </div></div>
 
-                    <div class="show-sidebar-container">
-                        <button class="show-sidebar">Docs Menu</button>
-                    </div>
-
                     <div class="col-md-9" role="main">
-                        <div class="row doc-header">
-                            <div class="col-sm-12">
-                                <div role="navigation" aria-label="breadcrumbs 
navigation">
+                        <div class="doc-header">
+                            <div role="navigation" aria-label="breadcrumbs 
navigation">
   <ul class="wy-breadcrumbs pull-right">
     <li><a href="/develop/os/introduction">Docs</a></li>
     
@@ -873,7 +885,6 @@
     
   </ul>
 </div>
-                            </div>
                         </div>
                         
                             <h2 id="os_mbuf_concat"><font color="#F2853F" 
style="font-size:24pt"> os_mbuf_concat</font></h2>
@@ -893,11 +904,11 @@
 </thead>
 <tbody>
 <tr>
-<td>first</td>
+<td><code>first</code></td>
 <td>Pointer to first mbuf chain</td>
 </tr>
 <tr>
-<td>second</td>
+<td><code>second</code></td>
 <td>Pointer to second mbuf chain</td>
 </tr>
 </tbody>
@@ -950,34 +961,22 @@
     </li>
 </ul>
                         </div>
-                        <div class="row">
-                            <footer>
-    <div class="row">
-        <div class="col-md-12">
-            
-                <p class="copyright">Copyright &copy; 2015 The Apache Software 
Foundation, Licensed under the Apache License, Version 2.0 Apache and the 
Apache feather logo are trademarks of The Apache Software Foundation.<br>The 
Apache Software Foundation Apache Incubator</p>
-            
-        </div>
-    </div>
-    <div class="copyright-logos">
-        <div class="row">
-            <div class="col-xs-6 text-left">
-                <img src="/img/asf_logo_wide_small.png" alt="Apache" 
title="Apache">
-            </div>
-            <div class="col-xs-6 text-right">
-                <img src="/img/egg-logo2.png" alt="Apache Incubator" 
title="Apache Incubator">
-            </div>
-        </div>
+                        <footer class="row">
+    <div class="col-xs-12">
+        
+            <p class="copyright">Copyright &copy; 2015 The Apache Software 
Foundation, Licensed under the Apache License, Version 2.0 Apache and the 
Apache feather logo are trademarks of The Apache Software Foundation.</p>
+        
     </div>
-    <div class="row">
-        <div class="col-md-12">
+    <div class="col-xs-12">
+        <div class="logos">
+            <img src="/img/asf_logo_wide_small.png" alt="Apache" 
title="Apache">
             <small class="footnote">
                 MyNewt is an effort undergoing incubation at The Apache 
Software Foundation (ASF), sponsored by the Apache Incubator. Incubation is 
required of all newly accepted projects until a further review indicates that 
the infrastructure, communications, and decision making process have stabilized 
in a manner consistent with other successful ASF projects. While incubation 
status is not necessarily a reflection of the completeness or stability of the 
code, it does indicate that the project has yet to be fully endorsed by the ASF.
             </small>
+            <img src="/img/egg-logo2.png" alt="Apache Incubator" title="Apache 
Incubator">
         </div>
     </div>
 </footer>
-                        </div>
                     </div>
                 </div>
             

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/89c943e1/develop/os/core_os/mbuf/os_mbuf_copydata/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/mbuf/os_mbuf_copydata/index.html 
b/develop/os/core_os/mbuf/os_mbuf_copydata/index.html
index 047698e..d8d431c 100644
--- a/develop/os/core_os/mbuf/os_mbuf_copydata/index.html
+++ b/develop/os/core_os/mbuf/os_mbuf_copydata/index.html
@@ -10,15 +10,14 @@
         <link rel="canonical" 
href="http://mynewt.apache.org/os/core_os/mbuf/os_mbuf_copydata/";> -->
         <link rel="shortcut icon" href="../../../../img/favicon.ico">
 
-       <title>os_mbuf_copydata - Apache Mynewt</title>
+           <title>os_mbuf_copydata - Apache Mynewt</title>
 
         <link href="../../../../css/bootstrap-3.0.3.min.css" rel="stylesheet">
-        <link href="../../../../css/font-awesome-4.0.3.css" rel="stylesheet">
         <link rel="stylesheet" href="../../../../css/highlight.css">
         <link href="../../../../css/base.css" rel="stylesheet">
         <link href="../../../../css/custom.css" rel="stylesheet">
         <link href="../../../../css/v2.css" rel="stylesheet">
-        <link 
href='https://fonts.googleapis.com/css?family=Roboto:400,500,700,900,300,100' 
rel='stylesheet' type='text/css'>
+        <link href="https://fonts.googleapis.com/css?family=Lato"; 
rel="stylesheet">
         <link rel="stylesheet" 
href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css";>
         <link href="../../../../extra.css" rel="stylesheet">
 
@@ -45,6 +44,16 @@
     <body class="os_mbuf_copydata">
 
 
+        <div class="container">
+    <div class="row v2-main-banner">
+        <div class="col-xs-12 v2-vcenter">
+            <a href="/"><img class="logo" src="/img/logo.png"></a>
+
+            <h4 class="tagline">An OS to build, deploy and securely manage 
billions of devices</h4>
+        </div>
+    </div>
+</div>
+
         
 
 
@@ -52,7 +61,7 @@
 
 
 
-<nav id="navbar" class="navbar navbar-inverse navbar-fixed-top" 
role="navigation">
+<nav id="navbar" class="navbar navbar-inverse affix-top" data-spy="affix" 
data-offset-top="150" role="navigation">
     <div class="container">
         <!-- Collapsed navigation -->
         <div class="navbar-header">
@@ -73,7 +82,7 @@
                 <li 
   class=""
 >
-                    <a href="/">Home</a>
+                    <a href="/"><i class="fa fa-home" style="font-size: 
larger;"></i></a>
                 </li>
                 <li 
   class="important"
@@ -86,6 +95,11 @@
                     <a href="/about/">About</a>
                 </li>
                 <li 
+  class=""
+>
+                    <a href="/talks/">Talks</a>
+                </li>
+                <li 
   class="active"
 >
                     <a href="/latest/os/introduction">Documentation</a>
@@ -120,9 +134,8 @@
         <div class="container">
             
                 <div class="row">
-                    <div class="col-md-3 v2-sidebar"><div id="docSidebar" 
class="hidden-print" role="complementary">
+                    <div class="col-md-3 v2-sidebar sidebar-container"><div 
id="docSidebar" class="hidden-print" role="complementary">
     <div class="top">
-        <img class="hidden-xs hidden-sm logo-small" src="/img/logo.svg" 
alt="MyNewt" title="MyNewt">
         <div role="search">
             <form id="rtd-search-form" class="wy-form" 
action="../../../../search.html" method="get">
                 <div class="form-group">
@@ -139,14 +152,14 @@
       value="/develop/os/introduction"
       selected="selected"
     >
-      Version: develop
+      Version: develop (latest)
     </option>
     
     <option
       value="/v0_9_0/os/introduction"
       
     >
-      Version: 0.9.0 (latest)
+      Version: 0.9.0
     </option>
     
 </select>
@@ -165,6 +178,10 @@
         
       
         
+      
+        
+      
+        
           
   
   
@@ -846,14 +863,9 @@
     </ul>
 </div></div>
 
-                    <div class="show-sidebar-container">
-                        <button class="show-sidebar">Docs Menu</button>
-                    </div>
-
                     <div class="col-md-9" role="main">
-                        <div class="row doc-header">
-                            <div class="col-sm-12">
-                                <div role="navigation" aria-label="breadcrumbs 
navigation">
+                        <div class="doc-header">
+                            <div role="navigation" aria-label="breadcrumbs 
navigation">
   <ul class="wy-breadcrumbs pull-right">
     <li><a href="/develop/os/introduction">Docs</a></li>
     
@@ -873,7 +885,6 @@
     
   </ul>
 </div>
-                            </div>
                         </div>
                         
                             <h2 id="os_mbuf_copydata"><font color="#F2853F" 
style="font-size:24pt"> os_mbuf_copydata</font></h2>
@@ -881,7 +892,7 @@
 </pre></div>
 
 
-<p>Copy data from an mbuf chain starting <em>off</em> bytes from the 
beginning, continuing for <em>len</em> bytes, into the indicated buffer.</p>
+<p>Copy data from an mbuf chain starting <code>off</code> bytes from the 
beginning, continuing for <code>len</code> bytes, into the indicated buffer.</p>
 <p><br></p>
 <h4 id="arguments">Arguments</h4>
 <table>
@@ -893,19 +904,19 @@
 </thead>
 <tbody>
 <tr>
-<td>m</td>
+<td><code>m</code></td>
 <td>Pointer to mbuf chain</td>
 </tr>
 <tr>
-<td>off</td>
+<td><code>off</code></td>
 <td>Start copy offset, in bytes, from beginning of mbuf chain</td>
 </tr>
 <tr>
-<td>len</td>
+<td><code>len</code></td>
 <td>Number of bytes to copy</td>
 </tr>
 <tr>
-<td>dst</td>
+<td><code>dst</code></td>
 <td>Data buffer to copy into</td>
 </tr>
 </tbody>
@@ -959,34 +970,22 @@
     </li>
 </ul>
                         </div>
-                        <div class="row">
-                            <footer>
-    <div class="row">
-        <div class="col-md-12">
-            
-                <p class="copyright">Copyright &copy; 2015 The Apache Software 
Foundation, Licensed under the Apache License, Version 2.0 Apache and the 
Apache feather logo are trademarks of The Apache Software Foundation.<br>The 
Apache Software Foundation Apache Incubator</p>
-            
-        </div>
-    </div>
-    <div class="copyright-logos">
-        <div class="row">
-            <div class="col-xs-6 text-left">
-                <img src="/img/asf_logo_wide_small.png" alt="Apache" 
title="Apache">
-            </div>
-            <div class="col-xs-6 text-right">
-                <img src="/img/egg-logo2.png" alt="Apache Incubator" 
title="Apache Incubator">
-            </div>
-        </div>
+                        <footer class="row">
+    <div class="col-xs-12">
+        
+            <p class="copyright">Copyright &copy; 2015 The Apache Software 
Foundation, Licensed under the Apache License, Version 2.0 Apache and the 
Apache feather logo are trademarks of The Apache Software Foundation.</p>
+        
     </div>
-    <div class="row">
-        <div class="col-md-12">
+    <div class="col-xs-12">
+        <div class="logos">
+            <img src="/img/asf_logo_wide_small.png" alt="Apache" 
title="Apache">
             <small class="footnote">
                 MyNewt is an effort undergoing incubation at The Apache 
Software Foundation (ASF), sponsored by the Apache Incubator. Incubation is 
required of all newly accepted projects until a further review indicates that 
the infrastructure, communications, and decision making process have stabilized 
in a manner consistent with other successful ASF projects. While incubation 
status is not necessarily a reflection of the completeness or stability of the 
code, it does indicate that the project has yet to be fully endorsed by the ASF.
             </small>
+            <img src="/img/egg-logo2.png" alt="Apache Incubator" title="Apache 
Incubator">
         </div>
     </div>
 </footer>
-                        </div>
                     </div>
                 </div>
             

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/89c943e1/develop/os/core_os/mbuf/os_mbuf_copyinto/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/mbuf/os_mbuf_copyinto/index.html 
b/develop/os/core_os/mbuf/os_mbuf_copyinto/index.html
index e6e0cf0..21cc8c1 100644
--- a/develop/os/core_os/mbuf/os_mbuf_copyinto/index.html
+++ b/develop/os/core_os/mbuf/os_mbuf_copyinto/index.html
@@ -10,15 +10,14 @@
         <link rel="canonical" 
href="http://mynewt.apache.org/os/core_os/mbuf/os_mbuf_copyinto/";> -->
         <link rel="shortcut icon" href="../../../../img/favicon.ico">
 
-       <title>os_mbuf_copyinto - Apache Mynewt</title>
+           <title>os_mbuf_copyinto - Apache Mynewt</title>
 
         <link href="../../../../css/bootstrap-3.0.3.min.css" rel="stylesheet">
-        <link href="../../../../css/font-awesome-4.0.3.css" rel="stylesheet">
         <link rel="stylesheet" href="../../../../css/highlight.css">
         <link href="../../../../css/base.css" rel="stylesheet">
         <link href="../../../../css/custom.css" rel="stylesheet">
         <link href="../../../../css/v2.css" rel="stylesheet">
-        <link 
href='https://fonts.googleapis.com/css?family=Roboto:400,500,700,900,300,100' 
rel='stylesheet' type='text/css'>
+        <link href="https://fonts.googleapis.com/css?family=Lato"; 
rel="stylesheet">
         <link rel="stylesheet" 
href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css";>
         <link href="../../../../extra.css" rel="stylesheet">
 
@@ -45,6 +44,16 @@
     <body class="os_mbuf_copyinto">
 
 
+        <div class="container">
+    <div class="row v2-main-banner">
+        <div class="col-xs-12 v2-vcenter">
+            <a href="/"><img class="logo" src="/img/logo.png"></a>
+
+            <h4 class="tagline">An OS to build, deploy and securely manage 
billions of devices</h4>
+        </div>
+    </div>
+</div>
+
         
 
 
@@ -52,7 +61,7 @@
 
 
 
-<nav id="navbar" class="navbar navbar-inverse navbar-fixed-top" 
role="navigation">
+<nav id="navbar" class="navbar navbar-inverse affix-top" data-spy="affix" 
data-offset-top="150" role="navigation">
     <div class="container">
         <!-- Collapsed navigation -->
         <div class="navbar-header">
@@ -73,7 +82,7 @@
                 <li 
   class=""
 >
-                    <a href="/">Home</a>
+                    <a href="/"><i class="fa fa-home" style="font-size: 
larger;"></i></a>
                 </li>
                 <li 
   class="important"
@@ -86,6 +95,11 @@
                     <a href="/about/">About</a>
                 </li>
                 <li 
+  class=""
+>
+                    <a href="/talks/">Talks</a>
+                </li>
+                <li 
   class="active"
 >
                     <a href="/latest/os/introduction">Documentation</a>
@@ -120,9 +134,8 @@
         <div class="container">
             
                 <div class="row">
-                    <div class="col-md-3 v2-sidebar"><div id="docSidebar" 
class="hidden-print" role="complementary">
+                    <div class="col-md-3 v2-sidebar sidebar-container"><div 
id="docSidebar" class="hidden-print" role="complementary">
     <div class="top">
-        <img class="hidden-xs hidden-sm logo-small" src="/img/logo.svg" 
alt="MyNewt" title="MyNewt">
         <div role="search">
             <form id="rtd-search-form" class="wy-form" 
action="../../../../search.html" method="get">
                 <div class="form-group">
@@ -139,14 +152,14 @@
       value="/develop/os/introduction"
       selected="selected"
     >
-      Version: develop
+      Version: develop (latest)
     </option>
     
     <option
       value="/v0_9_0/os/introduction"
       
     >
-      Version: 0.9.0 (latest)
+      Version: 0.9.0
     </option>
     
 </select>
@@ -165,6 +178,10 @@
         
       
         
+      
+        
+      
+        
           
   
   
@@ -846,14 +863,9 @@
     </ul>
 </div></div>
 
-                    <div class="show-sidebar-container">
-                        <button class="show-sidebar">Docs Menu</button>
-                    </div>
-
                     <div class="col-md-9" role="main">
-                        <div class="row doc-header">
-                            <div class="col-sm-12">
-                                <div role="navigation" aria-label="breadcrumbs 
navigation">
+                        <div class="doc-header">
+                            <div role="navigation" aria-label="breadcrumbs 
navigation">
   <ul class="wy-breadcrumbs pull-right">
     <li><a href="/develop/os/introduction">Docs</a></li>
     
@@ -873,7 +885,6 @@
     
   </ul>
 </div>
-                            </div>
                         </div>
                         
                             <h2 id="os_mbuf_copyinto"><font color="#F2853F" 
style="font-size:24pt"> os_mbuf_copyinto</font></h2>
@@ -893,19 +904,19 @@
 </thead>
 <tbody>
 <tr>
-<td>om</td>
+<td><code>om</code></td>
 <td>Pointer to mbuf chain</td>
 </tr>
 <tr>
-<td>off</td>
+<td><code>off</code></td>
 <td>Start copy offset, in bytes, from beginning of mbuf chain</td>
 </tr>
 <tr>
-<td>src</td>
+<td><code>src</code></td>
 <td>Address from which bytes are copied</td>
 </tr>
 <tr>
-<td>len</td>
+<td><code>len</code></td>
 <td>Number of bytes to copy from src</td>
 </tr>
 </tbody>
@@ -960,34 +971,22 @@ All other values indicate an error.</p>
     </li>
 </ul>
                         </div>
-                        <div class="row">
-                            <footer>
-    <div class="row">
-        <div class="col-md-12">
-            
-                <p class="copyright">Copyright &copy; 2015 The Apache Software 
Foundation, Licensed under the Apache License, Version 2.0 Apache and the 
Apache feather logo are trademarks of The Apache Software Foundation.<br>The 
Apache Software Foundation Apache Incubator</p>
-            
-        </div>
-    </div>
-    <div class="copyright-logos">
-        <div class="row">
-            <div class="col-xs-6 text-left">
-                <img src="/img/asf_logo_wide_small.png" alt="Apache" 
title="Apache">
-            </div>
-            <div class="col-xs-6 text-right">
-                <img src="/img/egg-logo2.png" alt="Apache Incubator" 
title="Apache Incubator">
-            </div>
-        </div>
+                        <footer class="row">
+    <div class="col-xs-12">
+        
+            <p class="copyright">Copyright &copy; 2015 The Apache Software 
Foundation, Licensed under the Apache License, Version 2.0 Apache and the 
Apache feather logo are trademarks of The Apache Software Foundation.</p>
+        
     </div>
-    <div class="row">
-        <div class="col-md-12">
+    <div class="col-xs-12">
+        <div class="logos">
+            <img src="/img/asf_logo_wide_small.png" alt="Apache" 
title="Apache">
             <small class="footnote">
                 MyNewt is an effort undergoing incubation at The Apache 
Software Foundation (ASF), sponsored by the Apache Incubator. Incubation is 
required of all newly accepted projects until a further review indicates that 
the infrastructure, communications, and decision making process have stabilized 
in a manner consistent with other successful ASF projects. While incubation 
status is not necessarily a reflection of the completeness or stability of the 
code, it does indicate that the project has yet to be fully endorsed by the ASF.
             </small>
+            <img src="/img/egg-logo2.png" alt="Apache Incubator" title="Apache 
Incubator">
         </div>
     </div>
 </footer>
-                        </div>
                     </div>
                 </div>
             

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/89c943e1/develop/os/core_os/mbuf/os_mbuf_dup/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/mbuf/os_mbuf_dup/index.html 
b/develop/os/core_os/mbuf/os_mbuf_dup/index.html
index 8c7551d..65012b1 100644
--- a/develop/os/core_os/mbuf/os_mbuf_dup/index.html
+++ b/develop/os/core_os/mbuf/os_mbuf_dup/index.html
@@ -10,15 +10,14 @@
         <link rel="canonical" 
href="http://mynewt.apache.org/os/core_os/mbuf/os_mbuf_dup/";> -->
         <link rel="shortcut icon" href="../../../../img/favicon.ico">
 
-       <title>os_mbuf_dup - Apache Mynewt</title>
+           <title>os_mbuf_dup - Apache Mynewt</title>
 
         <link href="../../../../css/bootstrap-3.0.3.min.css" rel="stylesheet">
-        <link href="../../../../css/font-awesome-4.0.3.css" rel="stylesheet">
         <link rel="stylesheet" href="../../../../css/highlight.css">
         <link href="../../../../css/base.css" rel="stylesheet">
         <link href="../../../../css/custom.css" rel="stylesheet">
         <link href="../../../../css/v2.css" rel="stylesheet">
-        <link 
href='https://fonts.googleapis.com/css?family=Roboto:400,500,700,900,300,100' 
rel='stylesheet' type='text/css'>
+        <link href="https://fonts.googleapis.com/css?family=Lato"; 
rel="stylesheet">
         <link rel="stylesheet" 
href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css";>
         <link href="../../../../extra.css" rel="stylesheet">
 
@@ -45,6 +44,16 @@
     <body class="os_mbuf_dup">
 
 
+        <div class="container">
+    <div class="row v2-main-banner">
+        <div class="col-xs-12 v2-vcenter">
+            <a href="/"><img class="logo" src="/img/logo.png"></a>
+
+            <h4 class="tagline">An OS to build, deploy and securely manage 
billions of devices</h4>
+        </div>
+    </div>
+</div>
+
         
 
 
@@ -52,7 +61,7 @@
 
 
 
-<nav id="navbar" class="navbar navbar-inverse navbar-fixed-top" 
role="navigation">
+<nav id="navbar" class="navbar navbar-inverse affix-top" data-spy="affix" 
data-offset-top="150" role="navigation">
     <div class="container">
         <!-- Collapsed navigation -->
         <div class="navbar-header">
@@ -73,7 +82,7 @@
                 <li 
   class=""
 >
-                    <a href="/">Home</a>
+                    <a href="/"><i class="fa fa-home" style="font-size: 
larger;"></i></a>
                 </li>
                 <li 
   class="important"
@@ -86,6 +95,11 @@
                     <a href="/about/">About</a>
                 </li>
                 <li 
+  class=""
+>
+                    <a href="/talks/">Talks</a>
+                </li>
+                <li 
   class="active"
 >
                     <a href="/latest/os/introduction">Documentation</a>
@@ -120,9 +134,8 @@
         <div class="container">
             
                 <div class="row">
-                    <div class="col-md-3 v2-sidebar"><div id="docSidebar" 
class="hidden-print" role="complementary">
+                    <div class="col-md-3 v2-sidebar sidebar-container"><div 
id="docSidebar" class="hidden-print" role="complementary">
     <div class="top">
-        <img class="hidden-xs hidden-sm logo-small" src="/img/logo.svg" 
alt="MyNewt" title="MyNewt">
         <div role="search">
             <form id="rtd-search-form" class="wy-form" 
action="../../../../search.html" method="get">
                 <div class="form-group">
@@ -139,14 +152,14 @@
       value="/develop/os/introduction"
       selected="selected"
     >
-      Version: develop
+      Version: develop (latest)
     </option>
     
     <option
       value="/v0_9_0/os/introduction"
       
     >
-      Version: 0.9.0 (latest)
+      Version: 0.9.0
     </option>
     
 </select>
@@ -165,6 +178,10 @@
         
       
         
+      
+        
+      
+        
           
   
   
@@ -846,14 +863,9 @@
     </ul>
 </div></div>
 
-                    <div class="show-sidebar-container">
-                        <button class="show-sidebar">Docs Menu</button>
-                    </div>
-
                     <div class="col-md-9" role="main">
-                        <div class="row doc-header">
-                            <div class="col-sm-12">
-                                <div role="navigation" aria-label="breadcrumbs 
navigation">
+                        <div class="doc-header">
+                            <div role="navigation" aria-label="breadcrumbs 
navigation">
   <ul class="wy-breadcrumbs pull-right">
     <li><a href="/develop/os/introduction">Docs</a></li>
     
@@ -873,7 +885,6 @@
     
   </ul>
 </div>
-                            </div>
                         </div>
                         
                             <h2 id="os_mbuf_dup"><font color="#F2853F" 
style="font-size:24pt"> os_mbuf_dup</font></h2>
@@ -893,14 +904,14 @@
 </thead>
 <tbody>
 <tr>
-<td>om</td>
+<td><code>om</code></td>
 <td>Pointer to mbuf chain to duplicate</td>
 </tr>
 </tbody>
 </table>
 <p><br></p>
 <h4 id="returned-values">Returned values</h4>
-<p>Pointer to the duplicated chain or NULL if not enough mbufs were available 
to duplicate the chain.</p>
+<p>Pointer to the duplicated chain or <strong>NULL</strong> if not enough 
mbufs were available to duplicate the chain.</p>
 <p><br></p>
 <h4 id="example">Example</h4>
 <div class="codehilite" style="background: #ffffff"><pre style="line-height: 
125%">    <span style="color: #A90D91">struct</span> <span style="color: 
#000000">os_mbuf</span> <span style="color: #000000">*om</span>;
@@ -937,34 +948,22 @@
     </li>
 </ul>
                         </div>
-                        <div class="row">
-                            <footer>
-    <div class="row">
-        <div class="col-md-12">
-            
-                <p class="copyright">Copyright &copy; 2015 The Apache Software 
Foundation, Licensed under the Apache License, Version 2.0 Apache and the 
Apache feather logo are trademarks of The Apache Software Foundation.<br>The 
Apache Software Foundation Apache Incubator</p>
-            
-        </div>
-    </div>
-    <div class="copyright-logos">
-        <div class="row">
-            <div class="col-xs-6 text-left">
-                <img src="/img/asf_logo_wide_small.png" alt="Apache" 
title="Apache">
-            </div>
-            <div class="col-xs-6 text-right">
-                <img src="/img/egg-logo2.png" alt="Apache Incubator" 
title="Apache Incubator">
-            </div>
-        </div>
+                        <footer class="row">
+    <div class="col-xs-12">
+        
+            <p class="copyright">Copyright &copy; 2015 The Apache Software 
Foundation, Licensed under the Apache License, Version 2.0 Apache and the 
Apache feather logo are trademarks of The Apache Software Foundation.</p>
+        
     </div>
-    <div class="row">
-        <div class="col-md-12">
+    <div class="col-xs-12">
+        <div class="logos">
+            <img src="/img/asf_logo_wide_small.png" alt="Apache" 
title="Apache">
             <small class="footnote">
                 MyNewt is an effort undergoing incubation at The Apache 
Software Foundation (ASF), sponsored by the Apache Incubator. Incubation is 
required of all newly accepted projects until a further review indicates that 
the infrastructure, communications, and decision making process have stabilized 
in a manner consistent with other successful ASF projects. While incubation 
status is not necessarily a reflection of the completeness or stability of the 
code, it does indicate that the project has yet to be fully endorsed by the ASF.
             </small>
+            <img src="/img/egg-logo2.png" alt="Apache Incubator" title="Apache 
Incubator">
         </div>
     </div>
 </footer>
-                        </div>
                     </div>
                 </div>
             

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/89c943e1/develop/os/core_os/mbuf/os_mbuf_extend/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/mbuf/os_mbuf_extend/index.html 
b/develop/os/core_os/mbuf/os_mbuf_extend/index.html
index b707943..fa92447 100644
--- a/develop/os/core_os/mbuf/os_mbuf_extend/index.html
+++ b/develop/os/core_os/mbuf/os_mbuf_extend/index.html
@@ -10,15 +10,14 @@
         <link rel="canonical" 
href="http://mynewt.apache.org/os/core_os/mbuf/os_mbuf_extend/";> -->
         <link rel="shortcut icon" href="../../../../img/favicon.ico">
 
-       <title>os_mbuf_extend - Apache Mynewt</title>
+           <title>os_mbuf_extend - Apache Mynewt</title>
 
         <link href="../../../../css/bootstrap-3.0.3.min.css" rel="stylesheet">
-        <link href="../../../../css/font-awesome-4.0.3.css" rel="stylesheet">
         <link rel="stylesheet" href="../../../../css/highlight.css">
         <link href="../../../../css/base.css" rel="stylesheet">
         <link href="../../../../css/custom.css" rel="stylesheet">
         <link href="../../../../css/v2.css" rel="stylesheet">
-        <link 
href='https://fonts.googleapis.com/css?family=Roboto:400,500,700,900,300,100' 
rel='stylesheet' type='text/css'>
+        <link href="https://fonts.googleapis.com/css?family=Lato"; 
rel="stylesheet">
         <link rel="stylesheet" 
href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css";>
         <link href="../../../../extra.css" rel="stylesheet">
 
@@ -45,6 +44,16 @@
     <body class="os_mbuf_extend">
 
 
+        <div class="container">
+    <div class="row v2-main-banner">
+        <div class="col-xs-12 v2-vcenter">
+            <a href="/"><img class="logo" src="/img/logo.png"></a>
+
+            <h4 class="tagline">An OS to build, deploy and securely manage 
billions of devices</h4>
+        </div>
+    </div>
+</div>
+
         
 
 
@@ -52,7 +61,7 @@
 
 
 
-<nav id="navbar" class="navbar navbar-inverse navbar-fixed-top" 
role="navigation">
+<nav id="navbar" class="navbar navbar-inverse affix-top" data-spy="affix" 
data-offset-top="150" role="navigation">
     <div class="container">
         <!-- Collapsed navigation -->
         <div class="navbar-header">
@@ -73,7 +82,7 @@
                 <li 
   class=""
 >
-                    <a href="/">Home</a>
+                    <a href="/"><i class="fa fa-home" style="font-size: 
larger;"></i></a>
                 </li>
                 <li 
   class="important"
@@ -86,6 +95,11 @@
                     <a href="/about/">About</a>
                 </li>
                 <li 
+  class=""
+>
+                    <a href="/talks/">Talks</a>
+                </li>
+                <li 
   class="active"
 >
                     <a href="/latest/os/introduction">Documentation</a>
@@ -120,9 +134,8 @@
         <div class="container">
             
                 <div class="row">
-                    <div class="col-md-3 v2-sidebar"><div id="docSidebar" 
class="hidden-print" role="complementary">
+                    <div class="col-md-3 v2-sidebar sidebar-container"><div 
id="docSidebar" class="hidden-print" role="complementary">
     <div class="top">
-        <img class="hidden-xs hidden-sm logo-small" src="/img/logo.svg" 
alt="MyNewt" title="MyNewt">
         <div role="search">
             <form id="rtd-search-form" class="wy-form" 
action="../../../../search.html" method="get">
                 <div class="form-group">
@@ -139,14 +152,14 @@
       value="/develop/os/introduction"
       selected="selected"
     >
-      Version: develop
+      Version: develop (latest)
     </option>
     
     <option
       value="/v0_9_0/os/introduction"
       
     >
-      Version: 0.9.0 (latest)
+      Version: 0.9.0
     </option>
     
 </select>
@@ -165,6 +178,10 @@
         
       
         
+      
+        
+      
+        
           
   
   
@@ -846,14 +863,9 @@
     </ul>
 </div></div>
 
-                    <div class="show-sidebar-container">
-                        <button class="show-sidebar">Docs Menu</button>
-                    </div>
-
                     <div class="col-md-9" role="main">
-                        <div class="row doc-header">
-                            <div class="col-sm-12">
-                                <div role="navigation" aria-label="breadcrumbs 
navigation">
+                        <div class="doc-header">
+                            <div role="navigation" aria-label="breadcrumbs 
navigation">
   <ul class="wy-breadcrumbs pull-right">
     <li><a href="/develop/os/introduction">Docs</a></li>
     
@@ -873,7 +885,6 @@
     
   </ul>
 </div>
-                            </div>
                         </div>
                         
                             <h2 id="os_mbuf_extend"><font color="#F2853F" 
style="font-size:24pt"> os_mbuf_extend</font></h2>
@@ -893,19 +904,19 @@
 </thead>
 <tbody>
 <tr>
-<td>om</td>
+<td><code>om</code></td>
 <td>Pointer to mbuf chain</td>
 </tr>
 <tr>
-<td>len</td>
+<td><code>len</code></td>
 <td>Number of bytes to increase packet header</td>
 </tr>
 </tbody>
 </table>
 <p><br></p>
 <h4 id="returned-values">Returned values</h4>
-<p>Pointer to start of extended data. Caller is guaranteed that there are at 
least <em>len</em> bytes from this pointer to the end of the mbuf.</p>
-<p>Returns NULL if extension fails due to insufficient mbufs or <em>len</em> 
too large.
+<p>Pointer to start of extended data. Caller is guaranteed that there are at 
least <code>len</code> bytes from this pointer to the end of the mbuf.</p>
+<p>Returns <strong>NULL</strong> if extension fails due to insufficient mbufs 
or <code>len</code> too large.
 <br></p>
 <h4 id="example">Example</h4>
 <div class="codehilite" style="background: #ffffff"><pre style="line-height: 
125%">    <span style="color: #A90D91">uint8_t</span> <span style="color: 
#000000">*dptr</span>;
@@ -943,34 +954,22 @@
     </li>
 </ul>
                         </div>
-                        <div class="row">
-                            <footer>
-    <div class="row">
-        <div class="col-md-12">
-            
-                <p class="copyright">Copyright &copy; 2015 The Apache Software 
Foundation, Licensed under the Apache License, Version 2.0 Apache and the 
Apache feather logo are trademarks of The Apache Software Foundation.<br>The 
Apache Software Foundation Apache Incubator</p>
-            
-        </div>
-    </div>
-    <div class="copyright-logos">
-        <div class="row">
-            <div class="col-xs-6 text-left">
-                <img src="/img/asf_logo_wide_small.png" alt="Apache" 
title="Apache">
-            </div>
-            <div class="col-xs-6 text-right">
-                <img src="/img/egg-logo2.png" alt="Apache Incubator" 
title="Apache Incubator">
-            </div>
-        </div>
+                        <footer class="row">
+    <div class="col-xs-12">
+        
+            <p class="copyright">Copyright &copy; 2015 The Apache Software 
Foundation, Licensed under the Apache License, Version 2.0 Apache and the 
Apache feather logo are trademarks of The Apache Software Foundation.</p>
+        
     </div>
-    <div class="row">
-        <div class="col-md-12">
+    <div class="col-xs-12">
+        <div class="logos">
+            <img src="/img/asf_logo_wide_small.png" alt="Apache" 
title="Apache">
             <small class="footnote">
                 MyNewt is an effort undergoing incubation at The Apache 
Software Foundation (ASF), sponsored by the Apache Incubator. Incubation is 
required of all newly accepted projects until a further review indicates that 
the infrastructure, communications, and decision making process have stabilized 
in a manner consistent with other successful ASF projects. While incubation 
status is not necessarily a reflection of the completeness or stability of the 
code, it does indicate that the project has yet to be fully endorsed by the ASF.
             </small>
+            <img src="/img/egg-logo2.png" alt="Apache Incubator" title="Apache 
Incubator">
         </div>
     </div>
 </footer>
-                        </div>
                     </div>
                 </div>
             

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/89c943e1/develop/os/core_os/mbuf/os_mbuf_free_chain/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/mbuf/os_mbuf_free_chain/index.html 
b/develop/os/core_os/mbuf/os_mbuf_free_chain/index.html
index 261d7bf..dc9e1c3 100644
--- a/develop/os/core_os/mbuf/os_mbuf_free_chain/index.html
+++ b/develop/os/core_os/mbuf/os_mbuf_free_chain/index.html
@@ -10,15 +10,14 @@
         <link rel="canonical" 
href="http://mynewt.apache.org/os/core_os/mbuf/os_mbuf_free_chain/";> -->
         <link rel="shortcut icon" href="../../../../img/favicon.ico">
 
-       <title>os_mbuf_free_chain - Apache Mynewt</title>
+           <title>os_mbuf_free_chain - Apache Mynewt</title>
 
         <link href="../../../../css/bootstrap-3.0.3.min.css" rel="stylesheet">
-        <link href="../../../../css/font-awesome-4.0.3.css" rel="stylesheet">
         <link rel="stylesheet" href="../../../../css/highlight.css">
         <link href="../../../../css/base.css" rel="stylesheet">
         <link href="../../../../css/custom.css" rel="stylesheet">
         <link href="../../../../css/v2.css" rel="stylesheet">
-        <link 
href='https://fonts.googleapis.com/css?family=Roboto:400,500,700,900,300,100' 
rel='stylesheet' type='text/css'>
+        <link href="https://fonts.googleapis.com/css?family=Lato"; 
rel="stylesheet">
         <link rel="stylesheet" 
href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css";>
         <link href="../../../../extra.css" rel="stylesheet">
 
@@ -45,6 +44,16 @@
     <body class="os_mbuf_free_chain">
 
 
+        <div class="container">
+    <div class="row v2-main-banner">
+        <div class="col-xs-12 v2-vcenter">
+            <a href="/"><img class="logo" src="/img/logo.png"></a>
+
+            <h4 class="tagline">An OS to build, deploy and securely manage 
billions of devices</h4>
+        </div>
+    </div>
+</div>
+
         
 
 
@@ -52,7 +61,7 @@
 
 
 
-<nav id="navbar" class="navbar navbar-inverse navbar-fixed-top" 
role="navigation">
+<nav id="navbar" class="navbar navbar-inverse affix-top" data-spy="affix" 
data-offset-top="150" role="navigation">
     <div class="container">
         <!-- Collapsed navigation -->
         <div class="navbar-header">
@@ -73,7 +82,7 @@
                 <li 
   class=""
 >
-                    <a href="/">Home</a>
+                    <a href="/"><i class="fa fa-home" style="font-size: 
larger;"></i></a>
                 </li>
                 <li 
   class="important"
@@ -86,6 +95,11 @@
                     <a href="/about/">About</a>
                 </li>
                 <li 
+  class=""
+>
+                    <a href="/talks/">Talks</a>
+                </li>
+                <li 
   class="active"
 >
                     <a href="/latest/os/introduction">Documentation</a>
@@ -120,9 +134,8 @@
         <div class="container">
             
                 <div class="row">
-                    <div class="col-md-3 v2-sidebar"><div id="docSidebar" 
class="hidden-print" role="complementary">
+                    <div class="col-md-3 v2-sidebar sidebar-container"><div 
id="docSidebar" class="hidden-print" role="complementary">
     <div class="top">
-        <img class="hidden-xs hidden-sm logo-small" src="/img/logo.svg" 
alt="MyNewt" title="MyNewt">
         <div role="search">
             <form id="rtd-search-form" class="wy-form" 
action="../../../../search.html" method="get">
                 <div class="form-group">
@@ -139,14 +152,14 @@
       value="/develop/os/introduction"
       selected="selected"
     >
-      Version: develop
+      Version: develop (latest)
     </option>
     
     <option
       value="/v0_9_0/os/introduction"
       
     >
-      Version: 0.9.0 (latest)
+      Version: 0.9.0
     </option>
     
 </select>
@@ -165,6 +178,10 @@
         
       
         
+      
+        
+      
+        
           
   
   
@@ -846,14 +863,9 @@
     </ul>
 </div></div>
 
-                    <div class="show-sidebar-container">
-                        <button class="show-sidebar">Docs Menu</button>
-                    </div>
-
                     <div class="col-md-9" role="main">
-                        <div class="row doc-header">
-                            <div class="col-sm-12">
-                                <div role="navigation" aria-label="breadcrumbs 
navigation">
+                        <div class="doc-header">
+                            <div role="navigation" aria-label="breadcrumbs 
navigation">
   <ul class="wy-breadcrumbs pull-right">
     <li><a href="/develop/os/introduction">Docs</a></li>
     
@@ -873,7 +885,6 @@
     
   </ul>
 </div>
-                            </div>
                         </div>
                         
                             <h2 id="os_mbuf_free_chain"><font color="#F2853F" 
style="font-size:24pt"> os_mbuf_free_chain</font></h2>
@@ -893,7 +904,7 @@
 </thead>
 <tbody>
 <tr>
-<td>om</td>
+<td><code>om</code></td>
 <td>Pointer to mbuf chain</td>
 </tr>
 </tbody>
@@ -939,34 +950,22 @@ Any other value indicates error</p>
     </li>
 </ul>
                         </div>
-                        <div class="row">
-                            <footer>
-    <div class="row">
-        <div class="col-md-12">
-            
-                <p class="copyright">Copyright &copy; 2015 The Apache Software 
Foundation, Licensed under the Apache License, Version 2.0 Apache and the 
Apache feather logo are trademarks of The Apache Software Foundation.<br>The 
Apache Software Foundation Apache Incubator</p>
-            
-        </div>
-    </div>
-    <div class="copyright-logos">
-        <div class="row">
-            <div class="col-xs-6 text-left">
-                <img src="/img/asf_logo_wide_small.png" alt="Apache" 
title="Apache">
-            </div>
-            <div class="col-xs-6 text-right">
-                <img src="/img/egg-logo2.png" alt="Apache Incubator" 
title="Apache Incubator">
-            </div>
-        </div>
+                        <footer class="row">
+    <div class="col-xs-12">
+        
+            <p class="copyright">Copyright &copy; 2015 The Apache Software 
Foundation, Licensed under the Apache License, Version 2.0 Apache and the 
Apache feather logo are trademarks of The Apache Software Foundation.</p>
+        
     </div>
-    <div class="row">
-        <div class="col-md-12">
+    <div class="col-xs-12">
+        <div class="logos">
+            <img src="/img/asf_logo_wide_small.png" alt="Apache" 
title="Apache">
             <small class="footnote">
                 MyNewt is an effort undergoing incubation at The Apache 
Software Foundation (ASF), sponsored by the Apache Incubator. Incubation is 
required of all newly accepted projects until a further review indicates that 
the infrastructure, communications, and decision making process have stabilized 
in a manner consistent with other successful ASF projects. While incubation 
status is not necessarily a reflection of the completeness or stability of the 
code, it does indicate that the project has yet to be fully endorsed by the ASF.
             </small>
+            <img src="/img/egg-logo2.png" alt="Apache Incubator" title="Apache 
Incubator">
         </div>
     </div>
 </footer>
-                        </div>
                     </div>
                 </div>
             

Reply via email to