Thu, 15 Feb 2018 18:28:03 +0100
[eip545b] add schematic for A201
<!doctype html> <html class="no-js" lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <link rel="stylesheet" href="{{ SITEURL}}/theme/css/foundation.min.css" media="all"> <script type="text/javascript" src="{{ SITEURL }}/theme/js/modernizr.js"></script> <link href='https://fonts.googleapis.com/css?family=Exo+2:400,300,700,300italic,400italic,700italic,900,900italic' rel='stylesheet' type='text/css'> <link rel="stylesheet" href="{{ SITEURL }}/theme/css/lamboz.css" media="all"> {% block head %} <title>{% block title %}{{ SITENAME }}{% endblock title %}</title> <meta charset="utf-8" /> {% if FEED_ALL_ATOM %} <link href="{{ FEED_DOMAIN }}/{{ FEED_ALL_ATOM }}" type="application/atom+xml" rel="alternate" title="{{ SITENAME }} Full Atom Feed" /> {% endif %} {% if FEED_ALL_RSS %} <link href="{{ FEED_DOMAIN }}/{{ FEED_ALL_RSS }}" type="application/rss+xml" rel="alternate" title="{{ SITENAME }} Full RSS Feed" /> {% endif %} {% if FEED_ATOM %} <link href="{{ FEED_DOMAIN }}/{{ FEED_ATOM }}" type="application/atom+xml" rel="alternate" title="{{ SITENAME }} Atom Feed" /> {% endif %} {% if FEED_RSS %} <link href="{{ FEED_DOMAIN }}/{{ FEED_RSS }}" type="application/rss+xml" rel="alternate" title="{{ SITENAME }} RSS Feed" /> {% endif %} {% if CATEGORY_FEED_ATOM and category %} <link href="{{ FEED_DOMAIN }}/{{ CATEGORY_FEED_ATOM|format(category.slug) }}" type="application/atom+xml" rel="alternate" title="{{ SITENAME }} Categories Atom Feed" /> {% endif %} {% if CATEGORY_FEED_RSS and category %} <link href="{{ FEED_DOMAIN }}/{{ CATEGORY_FEED_RSS|format(category.slug) }}" type="application/rss+xml" rel="alternate" title="{{ SITENAME }} Categories RSS Feed" /> {% endif %} {% if TAG_FEED_ATOM and tag %} <link href="{{ FEED_DOMAIN }}/{{ TAG_FEED_ATOM|format(tag.slug) }}" type="application/atom+xml" rel="alternate" title="{{ SITENAME }} Tags Atom Feed" /> {% endif %} {% if TAG_FEED_RSS and tag %} <link href="{{ FEED_DOMAIN }}/{{ TAG_FEED_RSS|format(tag.slug) }}" type="application/rss+xml" rel="alternate" title="{{ SITENAME }} Tags RSS Feed" /> {% endif %} {% if PIWIK %} {{PIWIK}} {% endif %} {% if article %} {% if article.stylesheets %} {% for stylesheet in article.stylesheets %} {{ stylesheet }} {% endfor %} {% endif %} {% if article.javascripts %} {% for javascript in article.javascripts %} {{ javascript }} {% endfor %} {% endif %} {% endif %} <script type="text/javascript" src="{{ SITEURL }}/js/plotly-latest.min.js"></script> {% endblock head %} </head> <body onload="WaveDrom.ProcessAll()"> <div class="pages"> <ul> <li class="home"><a href="{{ SITEURL }}/index.html">{{ SITENAME }}</a></li> {% for p in pages %} <li {% if p == page %} class="active"{% endif %}><a href="{{ SITEURL }}/{{ p.url }}">{{ p.title }}</a></li> {% endfor %} {% set cnt=5 %} {% for cat,l in categories %} {% if cnt >= 0 %} <li class="category"><a href="{{ SITEURL }}/{{ cat.url }}">{{ cat }}</a>({{ l | length }})</li> {% set cnt=cnt-1 %} {% endif %} {% endfor %} </ul> </div> {% block pageheader %} <div class="hp-header"> <div class="page-header"> <div class="content-header"> <div id="title-block"> <h1><a href="{{ SITEURL }}/">{{ SITENAME }}</a></h1> <p class="blurb">{{ SITESUBTITLE }}</p> </div> </div> </div> </div> {% endblock %} <div class="content"> <div class="data-holder"> <div class="row"> <div class="large-9 content-column column"> {% block content %} {% endblock %} </div> <div class="large-3 aside column"> {% block sidecontent %} {% endblock %} </div> </div> </div> </div> <div class="footer"> <div class="data-holder"> {% block footer %} <div class="row"> <div class="large-3 column"> {% include 'credits.html' %} </div> <div class="large-3 tag-cloud column"> <h3>Tags</h3> <ul> {% for t,tx in tags %} <li{% if t==tag %} class="active"{% endif %}><a href="{{ SITEURL }}/{{ t.url }}">{{ t }}</a>({{ tx | length }})</li> {% endfor %} </ul> </div> <div class="large-3 links column"> <h3>Links</h3> <ul> {% for title,link in LINKS %} <li><a href="{{ link }}">{{ title }}</a></li> {% endfor %} </ul> </div> <div class="large-3 category-column column"> <h3>Categories</h3> <ul> {% for cat,l in categories %} <li{% if cat==category %} class="active"{% endif %}><a href="{{ SITEURL }}/{{ cat.url }}">{{ cat }}</a> ({{ l | length }})</li> {% endfor %} </ul> </div> </div> {% endblock %} </div> {% include 'trademark.html' %} </div> </body> </html>