qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [qemu-web PATCH 0/6] Small header/footer layout changes
@ 2021-09-08 12:28 Daniel P. Berrangé
  2021-09-08 12:28 ` [qemu-web PATCH 1/6] Compress the two front page headings into one Daniel P. Berrangé
                   ` (6 more replies)
  0 siblings, 7 replies; 8+ messages in thread
From: Daniel P. Berrangé @ 2021-09-08 12:28 UTC (permalink / raw)
  To: qemu-devel; +Cc: Paolo Bonzini, Thomas Huth, Daniel P. Berrangé

I previously sent a large series to more fully re-design the
website, especially the front page

  https://lists.gnu.org/archive/html/qemu-devel/2020-10/msg08205.html

Paolo had some feedback on that which I want to take into account
but playing with CSS / layout always takes me way too long. I
figured it could still be beneficial to take some of the simpler
patches in that series.

So essentially this small series is the part of that large series
that changes the header and footer. The changes to the front page
body content are cut out until I can get them working better.

In a slight change from the previous posting for the "edit page"
link at the bottom, I've now used an icon to represent it and
moved its position, such that the layout is more visually
pleasant.

The slight downside with only taking the header/footer changes
is that some of the links I removed from the footer, would have
been added in the page body of the front page instead. I think
that's probably ok not to have them regardless though, as they
are just a single jump away in an obvious place from the navbar
header.

Daniel P. Berrangé (6):
  Compress the two front page headings into one
  Simplify copyright and integrate into footer
  Put a full SFC membership blurb in footer of every page
  Move wiki link from footer into the header navbar
  Simplify and restructure the page footer
  Add link to "page source" for all pages

 _includes/copyright.html     |   8 -----
 _includes/footer.html        |  33 +++++++-----------
 _includes/nav.html           |   1 +
 _layouts/blog.html           |   1 -
 _layouts/home.html           |   1 -
 _layouts/page.html           |   1 -
 assets/css/style-desktop.css |  21 +-----------
 assets/css/style-mobile.css  |  22 +-----------
 assets/css/style.css         |  63 ++++++++++++++++++++++-------------
 assets/images/edit-page.png  | Bin 0 -> 4997 bytes
 index.html                   |   8 +----
 11 files changed, 56 insertions(+), 103 deletions(-)
 delete mode 100644 _includes/copyright.html
 create mode 100644 assets/images/edit-page.png

-- 
2.31.1




^ permalink raw reply	[flat|nested] 8+ messages in thread

* [qemu-web PATCH 1/6] Compress the two front page headings into one
  2021-09-08 12:28 [qemu-web PATCH 0/6] Small header/footer layout changes Daniel P. Berrangé
@ 2021-09-08 12:28 ` Daniel P. Berrangé
  2021-09-08 12:28 ` [qemu-web PATCH 2/6] Simplify copyright and integrate into footer Daniel P. Berrangé
                   ` (5 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: Daniel P. Berrangé @ 2021-09-08 12:28 UTC (permalink / raw)
  To: qemu-devel; +Cc: Paolo Bonzini, Thomas Huth, Daniel P. Berrangé

The current headings are repetative and waste vertical screen real
estate which could hold more useful content.

Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
---
 index.html | 6 +-----
 1 file changed, 1 insertion(+), 5 deletions(-)

diff --git a/index.html b/index.html
index e52868d..ad7624f 100644
--- a/index.html
+++ b/index.html
@@ -8,17 +8,13 @@ colorbox: True
 	<div id="header">
 		<div class="container">
 			<h1>QEMU</h1>
-			<span class="tag">the FAST! processor emulator</span>
+			<span class="tag">A generic and open source machine emulator and virtualizer</p>
 		</div>
 	</div>
 	
 <!-- Featured -->
 <div id="featured">
 	<div class="container">
-		<header>
-			<h2>What is QEMU?</h2>
-			<p>QEMU is a generic and open source machine emulator and virtualizer.</p>
-		</header>
 		<div class="row">
 			<section class="4u">
 				<div class="pennant">{% include screenshot.html offset=0 limit=1 %}</div>
-- 
2.31.1



^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [qemu-web PATCH 2/6] Simplify copyright and integrate into footer
  2021-09-08 12:28 [qemu-web PATCH 0/6] Small header/footer layout changes Daniel P. Berrangé
  2021-09-08 12:28 ` [qemu-web PATCH 1/6] Compress the two front page headings into one Daniel P. Berrangé
@ 2021-09-08 12:28 ` Daniel P. Berrangé
  2021-09-08 12:28 ` [qemu-web PATCH 3/6] Put a full SFC membership blurb in footer of every page Daniel P. Berrangé
                   ` (4 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: Daniel P. Berrangé @ 2021-09-08 12:28 UTC (permalink / raw)
  To: qemu-devel; +Cc: Paolo Bonzini, Thomas Huth, Daniel P. Berrangé

The copyright information is at the base of the page so logically part of
the page footer structure.

Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
---
 _includes/copyright.html    |  8 --------
 _includes/footer.html       |  3 +++
 _layouts/blog.html          |  1 -
 _layouts/home.html          |  1 -
 _layouts/page.html          |  1 -
 assets/css/style-mobile.css |  2 +-
 assets/css/style.css        | 28 ++++++++++++----------------
 7 files changed, 16 insertions(+), 28 deletions(-)
 delete mode 100644 _includes/copyright.html

diff --git a/_includes/copyright.html b/_includes/copyright.html
deleted file mode 100644
index cdcd98f..0000000
--- a/_includes/copyright.html
+++ /dev/null
@@ -1,8 +0,0 @@
-<div id="copyright">
-	<div id="copyright-inner">
-	  <div class="container">
-	    This site is made available under the terms of
-	    <a href="{{ relative_root }}/license.html">a number of licenses</a>.
-	  </div>
-	</div>
-</div>
diff --git a/_includes/footer.html b/_includes/footer.html
index b614795..6e1b247 100644
--- a/_includes/footer.html
+++ b/_includes/footer.html
@@ -27,4 +27,7 @@
 			<li><a href="https://xenproject.org">Xen</a></li>
 		</ul>
 	</div>
+	<div id="licenses">
+		<a href="{{ relative_root }}/license.html">Website licenses</a>
+	</div>
 </div>
diff --git a/_layouts/blog.html b/_layouts/blog.html
index b300636..b7fcdbf 100644
--- a/_layouts/blog.html
+++ b/_layouts/blog.html
@@ -21,7 +21,6 @@ Released for free under the Creative Commons Attribution 3.0 license (templated.
 	
 	{% include sidebar.html %}
 	{% include footer.html %}
-	{% include copyright.html %}
 
 </body>
 </html>
diff --git a/_layouts/home.html b/_layouts/home.html
index d94c9b0..f7b6931 100644
--- a/_layouts/home.html
+++ b/_layouts/home.html
@@ -18,7 +18,6 @@ Released for free under the Creative Commons Attribution 3.0 license (templated.
 	{{ content }}
 
 	{% include footer.html %}
-	{% include copyright.html %}
 
 </body>
 </html>
diff --git a/_layouts/page.html b/_layouts/page.html
index d650054..765d204 100644
--- a/_layouts/page.html
+++ b/_layouts/page.html
@@ -23,7 +23,6 @@ Released for free under the Creative Commons Attribution 3.0 license (templated.
 	</div>
 	
 	{% include footer.html %}
-	{% include copyright.html %}
 
 </body>
 </html>
diff --git a/assets/css/style-mobile.css b/assets/css/style-mobile.css
index 1bae7a2..213a3fb 100644
--- a/assets/css/style-mobile.css
+++ b/assets/css/style-mobile.css
@@ -242,7 +242,7 @@
 /* Columns                                                                       */
 /*********************************************************************************/
 
-	#main, #footer-inner, #copyright-inner
+	#main, #footer-inner
 	{
 		margin-left: 0%;
 		width: 100%;
diff --git a/assets/css/style.css b/assets/css/style.css
index bed0bf4..9daa18b 100644
--- a/assets/css/style.css
+++ b/assets/css/style.css
@@ -428,7 +428,7 @@
 /* Columns                                                                       */
 /*********************************************************************************/
 
-	#main, #copyright-inner
+	#main
 	{
 		margin-left: 16.667%;
 		width: 66.667%;
@@ -525,23 +525,19 @@
 		margin: 0
 	}
 
-/*********************************************************************************/
-/* Copyright                                                                     */
-/*********************************************************************************/
-
-	#copyright
-	{
-		clear: left;
-		border-top: 1px solid #aaaaaa;
-		position: relative;
-		color: #aaaaaa;
-		background: #ffffff;
-		padding: 1em 0em;
+	#licenses {
+		padding: 0em;
+		padding-left: 1em;
+		padding-right: 1em;
+		font-size: smaller;
+		color: #401200;
+		background: #fff;
+		margin: 1em;
+		margin-top: 2em;
 	}
 
-	#copyright a
-	{
-		color: inherit;
+	#licenses {
+		float: right;
 	}
 
 /*********************************************************************************/
-- 
2.31.1



^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [qemu-web PATCH 3/6] Put a full SFC membership blurb in footer of every page
  2021-09-08 12:28 [qemu-web PATCH 0/6] Small header/footer layout changes Daniel P. Berrangé
  2021-09-08 12:28 ` [qemu-web PATCH 1/6] Compress the two front page headings into one Daniel P. Berrangé
  2021-09-08 12:28 ` [qemu-web PATCH 2/6] Simplify copyright and integrate into footer Daniel P. Berrangé
@ 2021-09-08 12:28 ` Daniel P. Berrangé
  2021-09-08 12:28 ` [qemu-web PATCH 4/6] Move wiki link from footer into the header navbar Daniel P. Berrangé
                   ` (3 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: Daniel P. Berrangé @ 2021-09-08 12:28 UTC (permalink / raw)
  To: qemu-devel; +Cc: Paolo Bonzini, Thomas Huth, Daniel P. Berrangé

Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
---
 _includes/footer.html | 4 +++-
 assets/css/style.css  | 6 +++++-
 index.html            | 2 --
 3 files changed, 8 insertions(+), 4 deletions(-)

diff --git a/_includes/footer.html b/_includes/footer.html
index 6e1b247..411ff55 100644
--- a/_includes/footer.html
+++ b/_includes/footer.html
@@ -3,7 +3,6 @@
 		<ul class="style">
 			<li><a href="{{ relative_root }}/">Home</a></li>
 			<li><a href="{{ relative_root }}/download">Download</a></li>
-			<li><a href="{{ relative_root }}/conservancy/">Conservancy / Committee</a></li>
 			<li><a href="http://qemu-advent-calendar.org">QEMU advent calendar</a></li>
 		</ul>
 		<ul class="style">
@@ -27,6 +26,9 @@
 			<li><a href="https://xenproject.org">Xen</a></li>
 		</ul>
 	</div>
+	<div id="conservancy">
+		QEMU is a member of <a href="{{ relative_root }}/conservancy/">Software Freedom Conservancy</a>
+	</div>
 	<div id="licenses">
 		<a href="{{ relative_root }}/license.html">Website licenses</a>
 	</div>
diff --git a/assets/css/style.css b/assets/css/style.css
index 9daa18b..0b4e043 100644
--- a/assets/css/style.css
+++ b/assets/css/style.css
@@ -525,7 +525,7 @@
 		margin: 0
 	}
 
-	#licenses {
+	#licenses, #conservancy {
 		padding: 0em;
 		padding-left: 1em;
 		padding-right: 1em;
@@ -540,6 +540,10 @@
 		float: right;
 	}
 
+	#conservancy {
+		float: left;
+	}
+
 /*********************************************************************************/
 /* Featured                                                                      */
 /*********************************************************************************/
diff --git a/index.html b/index.html
index ad7624f..d72750c 100644
--- a/index.html
+++ b/index.html
@@ -58,8 +58,6 @@ $('.colorbox').on("click.random-namespace", function() {
 </script>
 
 		</div>
-		<hr>
-		<p>QEMU is a member of <a href="{{ relative_root }}/conservancy/">Software Freedom Conservancy</a>.</p>
 	</div>
 </div>
 
-- 
2.31.1



^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [qemu-web PATCH 4/6] Move wiki link from footer into the header navbar
  2021-09-08 12:28 [qemu-web PATCH 0/6] Small header/footer layout changes Daniel P. Berrangé
                   ` (2 preceding siblings ...)
  2021-09-08 12:28 ` [qemu-web PATCH 3/6] Put a full SFC membership blurb in footer of every page Daniel P. Berrangé
@ 2021-09-08 12:28 ` Daniel P. Berrangé
  2021-09-08 12:28 ` [qemu-web PATCH 5/6] Simplify and restructure the page footer Daniel P. Berrangé
                   ` (2 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: Daniel P. Berrangé @ 2021-09-08 12:28 UTC (permalink / raw)
  To: qemu-devel; +Cc: Paolo Bonzini, Thomas Huth, Daniel P. Berrangé

The wiki is important enough that it should be presented more
prominently in the page header navbar, rather than the footer.

Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
---
 _includes/footer.html | 1 -
 _includes/nav.html    | 1 +
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/_includes/footer.html b/_includes/footer.html
index 411ff55..6e5bef7 100644
--- a/_includes/footer.html
+++ b/_includes/footer.html
@@ -16,7 +16,6 @@
 			<li><a href="{{ relative_root }}/documentation">Documentation</a></li>
 			<li><a href="https://www.qemu.org/docs/master/">Main docs</a></li>
 			<li><a href="https://wiki.qemu.org/Category:Developer_documentation">Developer docs</a></li>
-			<li><a href="https://wiki.qemu.org/">Wiki</a></li>
 		</ul>
 		<ul class="style">
 			<li><a href="https://planet.virt-tools.org/">virt tools planet</a></li>
diff --git a/_includes/nav.html b/_includes/nav.html
index c66ee92..73b39b3 100644
--- a/_includes/nav.html
+++ b/_includes/nav.html
@@ -7,6 +7,7 @@
 			</li><li {% if current[1] == 'support' %}class='current'{% endif %}><a href="{{ relative_root }}/support">Support</a>
 			</li><li {% if current[1] == 'contribute' %}class='current'{% endif %}><a href="{{ relative_root }}/contribute">Contribute</a>
 			</li><li {% if current[1] == 'documentation' %}class='current'{% endif %}><a href="{{ relative_root }}/documentation">Docs</a>
+			</li><li><a href="https://wiki.qemu.org">Wiki</a>
 			</li><li {% if current[1] == 'blog' %}class='current'{% endif %}><a href="{{ relative_root }}/blog">Blog</a></li>
 		</ul>
 	</nav>
-- 
2.31.1



^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [qemu-web PATCH 5/6] Simplify and restructure the page footer
  2021-09-08 12:28 [qemu-web PATCH 0/6] Small header/footer layout changes Daniel P. Berrangé
                   ` (3 preceding siblings ...)
  2021-09-08 12:28 ` [qemu-web PATCH 4/6] Move wiki link from footer into the header navbar Daniel P. Berrangé
@ 2021-09-08 12:28 ` Daniel P. Berrangé
  2021-09-08 12:28 ` [qemu-web PATCH 6/6] Add link to "page source" for all pages Daniel P. Berrangé
  2021-09-10 15:39 ` [qemu-web PATCH 0/6] Small header/footer layout changes Paolo Bonzini
  6 siblings, 0 replies; 8+ messages in thread
From: Daniel P. Berrangé @ 2021-09-08 12:28 UTC (permalink / raw)
  To: qemu-devel; +Cc: Paolo Bonzini, Thomas Huth, Daniel P. Berrangé

The footer is not an effective place to locate frequently needed site
navigation links. Some of the links are already present in the top
navigation bar, while others are just one jump away on the subsequent
page in a fairly obvious place.

This removes all the local site navigation links from the footer and
leaves it as a place for external project links, along with the website
license and SFC information.

Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
---
 _includes/footer.html        | 22 +++-------------------
 assets/css/style-desktop.css | 21 +--------------------
 assets/css/style-mobile.css  | 22 +---------------------
 assets/css/style.css         | 26 +++++++++++++++++---------
 4 files changed, 22 insertions(+), 69 deletions(-)

diff --git a/_includes/footer.html b/_includes/footer.html
index 6e5bef7..5adc569 100644
--- a/_includes/footer.html
+++ b/_includes/footer.html
@@ -1,24 +1,8 @@
 <div id="footer">
-	<div id="footer-inner">
+	<div id="external-links">
 		<ul class="style">
-			<li><a href="{{ relative_root }}/">Home</a></li>
-			<li><a href="{{ relative_root }}/download">Download</a></li>
-			<li><a href="http://qemu-advent-calendar.org">QEMU advent calendar</a></li>
-		</ul>
-		<ul class="style">
-			<li><a href="{{ relative_root }}/contribute">Contribute</a></li>
-			<li><a href="{{ relative_root }}/contribute/report-a-bug">Reporting a bug</a></li>
-			<li><a href="https://wiki.qemu.org/Documentation/GettingStartedDevelopers">New contributors</a></li>
-			<li><a href="https://wiki.qemu.org/Contribute/SubmitAPatch">Submitting a patch</a></li>
-			<li><a href="https://wiki.qemu.org/Contribute/FAQ">Contributor FAQ</a></li>
-		</ul>
-		<ul class="style">
-			<li><a href="{{ relative_root }}/documentation">Documentation</a></li>
-			<li><a href="https://www.qemu.org/docs/master/">Main docs</a></li>
-			<li><a href="https://wiki.qemu.org/Category:Developer_documentation">Developer docs</a></li>
-		</ul>
-		<ul class="style">
-			<li><a href="https://planet.virt-tools.org/">virt tools planet</a></li>
+			<li><a href="http://qemu-advent-calendar.org">Advent calendar</a></li>
+			<li><a href="https://planet.virt-tools.org/">Blog planet</a></li>
 			<li><a href="https://www.linux-kvm.org/">KVM</a></li>
 			<li><a href="http://libguestfs.org/">Libguestfs</a></li>
 			<li><a href="https://libvirt.org/">Libvirt</a></li>
diff --git a/assets/css/style-desktop.css b/assets/css/style-desktop.css
index 2beb58d..90a154d 100644
--- a/assets/css/style-desktop.css
+++ b/assets/css/style-desktop.css
@@ -104,26 +104,7 @@
 
 	#footer
 	{
-		padding: 1em 0em;
-	}
-
-	#footer-inner
-	{
-		width: 95%;
-		display: table;
-		margin: auto;
-	}
-
-	#footer ul
-	{
-		width: 25%;
-		display: table-cell;
-		padding-left: 2em;
-	}
-
-	#footer ul:first-child
-	{
-		padding-left: 0px;
+		clear: both;
 	}
 
 /*********************************************************************************/
diff --git a/assets/css/style-mobile.css b/assets/css/style-mobile.css
index 213a3fb..5c9d11b 100644
--- a/assets/css/style-mobile.css
+++ b/assets/css/style-mobile.css
@@ -242,7 +242,7 @@
 /* Columns                                                                       */
 /*********************************************************************************/
 
-	#main, #footer-inner
+	#main
 	{
 		margin-left: 0%;
 		width: 100%;
@@ -277,26 +277,6 @@
 		font-size: 1.6em;
 	}
 
-/*********************************************************************************/
-/* Footer                                                                        */
-/*********************************************************************************/
-
-	#footer
-	{
-		padding: 1em;
-	}
-
-	#footer ul
-	{
-		padding: 0.6em 0px;
-		border-top: 1px solid white;
-	}
-
-	#footer ul:first-child
-	{
-		border-top: 0px;
-	}
-
 /*********************************************************************************/
 /* Featured                                                                      */
 /*********************************************************************************/
diff --git a/assets/css/style.css b/assets/css/style.css
index 0b4e043..37bd333 100644
--- a/assets/css/style.css
+++ b/assets/css/style.css
@@ -504,9 +504,6 @@
 	#footer
 	{
 		position: relative;
-		clear: left;
-		background: #401200;
-		color: #FFF;
 	}
 
 	#footer a
@@ -516,13 +513,24 @@
 
 	#footer ul
 	{
-		vertical-align: top;
+		margin: 0em;
 	}
 
-	#footer ul, #footer ul > li
-	{
-		padding: 0;
-		margin: 0
+	#external-links {
+		padding: 0em;
+		padding-top: 0.3em;
+		padding-bottom: 0.3em;
+		background: #401200;
+		color: #FFF;
+		text-align: center;
+	}
+
+	#external-links li {
+		display: inline;
+	}
+
+	#external-links li a {
+		padding-left: 1em;
 	}
 
 	#licenses, #conservancy {
@@ -533,7 +541,7 @@
 		color: #401200;
 		background: #fff;
 		margin: 1em;
-		margin-top: 2em;
+		margin-top: 1em;
 	}
 
 	#licenses {
-- 
2.31.1



^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [qemu-web PATCH 6/6] Add link to "page source" for all pages
  2021-09-08 12:28 [qemu-web PATCH 0/6] Small header/footer layout changes Daniel P. Berrangé
                   ` (4 preceding siblings ...)
  2021-09-08 12:28 ` [qemu-web PATCH 5/6] Simplify and restructure the page footer Daniel P. Berrangé
@ 2021-09-08 12:28 ` Daniel P. Berrangé
  2021-09-10 15:39 ` [qemu-web PATCH 0/6] Small header/footer layout changes Paolo Bonzini
  6 siblings, 0 replies; 8+ messages in thread
From: Daniel P. Berrangé @ 2021-09-08 12:28 UTC (permalink / raw)
  To: qemu-devel; +Cc: Paolo Bonzini, Thomas Huth, Daniel P. Berrangé

The link takes the user directly to the source markdown file in gitlab.
This gives them guidance as to what file should be editted to make
changes to the content. The link text is replaced by an icon in normal
rendering.

Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
---
 _includes/footer.html       |   3 +++
 assets/css/style.css        |  13 +++++++++++--
 assets/images/edit-page.png | Bin 0 -> 4997 bytes
 3 files changed, 14 insertions(+), 2 deletions(-)
 create mode 100644 assets/images/edit-page.png

diff --git a/_includes/footer.html b/_includes/footer.html
index 5adc569..1a0b960 100644
--- a/_includes/footer.html
+++ b/_includes/footer.html
@@ -9,6 +9,9 @@
 			<li><a href="https://xenproject.org">Xen</a></li>
 		</ul>
 	</div>
+	<div id="edit-page">
+		<a href="https://gitlab.com/qemu-project/qemu-web/-/blob/master/{{page.path}}">page source</a>
+	</div>
 	<div id="conservancy">
 		QEMU is a member of <a href="{{ relative_root }}/conservancy/">Software Freedom Conservancy</a>
 	</div>
diff --git a/assets/css/style.css b/assets/css/style.css
index 37bd333..88f7e85 100644
--- a/assets/css/style.css
+++ b/assets/css/style.css
@@ -533,7 +533,7 @@
 		padding-left: 1em;
 	}
 
-	#licenses, #conservancy {
+	#licenses, #conservancy, #edit-page {
 		padding: 0em;
 		padding-left: 1em;
 		padding-right: 1em;
@@ -544,7 +544,7 @@
 		margin-top: 1em;
 	}
 
-	#licenses {
+	#licenses, #edit-page {
 		float: right;
 	}
 
@@ -552,6 +552,15 @@
 		float: left;
 	}
 
+	#edit-page a {
+		overflow: hidden;
+		background: url(../images/edit-page.png);
+		display: inline-block;
+		width: 24px;
+		height: 24px;
+		padding-left: 24px;
+	}
+
 /*********************************************************************************/
 /* Featured                                                                      */
 /*********************************************************************************/
diff --git a/assets/images/edit-page.png b/assets/images/edit-page.png
new file mode 100644
index 0000000000000000000000000000000000000000..63fb4a4b1137a0a0b509dc38d3ecc687c55f6b5f
GIT binary patch
literal 4997
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
Us^(_S2gGA|bHaj3W`CRZUxr_T9{>OV

literal 0
HcmV?d00001

-- 
2.31.1



^ permalink raw reply related	[flat|nested] 8+ messages in thread

* Re: [qemu-web PATCH 0/6] Small header/footer layout changes
  2021-09-08 12:28 [qemu-web PATCH 0/6] Small header/footer layout changes Daniel P. Berrangé
                   ` (5 preceding siblings ...)
  2021-09-08 12:28 ` [qemu-web PATCH 6/6] Add link to "page source" for all pages Daniel P. Berrangé
@ 2021-09-10 15:39 ` Paolo Bonzini
  6 siblings, 0 replies; 8+ messages in thread
From: Paolo Bonzini @ 2021-09-10 15:39 UTC (permalink / raw)
  To: Daniel P. Berrangé, qemu-devel; +Cc: Thomas Huth

On 08/09/21 14:28, Daniel P. Berrangé wrote:
> I previously sent a large series to more fully re-design the
> website, especially the front page
> 
>    https://lists.gnu.org/archive/html/qemu-devel/2020-10/msg08205.html
> 
> Paolo had some feedback on that which I want to take into account
> but playing with CSS / layout always takes me way too long. I
> figured it could still be beneficial to take some of the simpler
> patches in that series.
> 
> So essentially this small series is the part of that large series
> that changes the header and footer. The changes to the front page
> body content are cut out until I can get them working better.
> 
> In a slight change from the previous posting for the "edit page"
> link at the bottom, I've now used an icon to represent it and
> moved its position, such that the layout is more visually
> pleasant.
> 
> The slight downside with only taking the header/footer changes
> is that some of the links I removed from the footer, would have
> been added in the page body of the front page instead. I think
> that's probably ok not to have them regardless though, as they
> are just a single jump away in an obvious place from the navbar
> header.

Yeah, some of them may be useful for easier access to contribution 
information and documentation, but it's okay to remove them for now.

I merged this part, thanks!

Paolo



^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2021-09-10 15:40 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-09-08 12:28 [qemu-web PATCH 0/6] Small header/footer layout changes Daniel P. Berrangé
2021-09-08 12:28 ` [qemu-web PATCH 1/6] Compress the two front page headings into one Daniel P. Berrangé
2021-09-08 12:28 ` [qemu-web PATCH 2/6] Simplify copyright and integrate into footer Daniel P. Berrangé
2021-09-08 12:28 ` [qemu-web PATCH 3/6] Put a full SFC membership blurb in footer of every page Daniel P. Berrangé
2021-09-08 12:28 ` [qemu-web PATCH 4/6] Move wiki link from footer into the header navbar Daniel P. Berrangé
2021-09-08 12:28 ` [qemu-web PATCH 5/6] Simplify and restructure the page footer Daniel P. Berrangé
2021-09-08 12:28 ` [qemu-web PATCH 6/6] Add link to "page source" for all pages Daniel P. Berrangé
2021-09-10 15:39 ` [qemu-web PATCH 0/6] Small header/footer layout changes Paolo Bonzini

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).