diff --git a/_pages/fibf-business-standards/fibf.html b/_pages/fibf-business-standards/fibf.html index 7bce0c85f..b1172f9d1 100755 --- a/_pages/fibf-business-standards/fibf.html +++ b/_pages/fibf-business-standards/fibf.html @@ -14,8 +14,11 @@
-

Efficient Management through Data and Business Standards

-

Data and Business Standards, aligned to policy and agreed to by agencies, enable the government to coordinate on the common capabilities needed by agencies to deliver on their management responsibilities. They are a first step towards agency agreement on the outcomes, data and management coordination needed to drive economies of scale and leverage the government’s buying power.

+

Management Efficiency through Data and Business Standards

+

Data and Business Standards, aligned to policy and continuously updated, enable the + federal government to better coordinate on common agency management and operations capabilities. + These standards, agreed to by agencies, are a first step toward achieving the outcomes, data, and common technologies + needed to drive economies of scale and leverage the government’s buying power.

@@ -59,7 +62,7 @@

Efficient Management through Data and Business Standards

Federal Integrated Business Framework

The Federal Integrated Business Framework (FIBF) includes five components:

    -
  1. Federal Business Lifecycles, functional areas, functions, and activities are the basis for understanding the services agencies need and the management solutions that should be offered.
  2. +
  3. Federal Business Lifecycles are comprised of functions and activities that are the basis for understanding the services agencies need and the management solutions that should be offered.
  4. Business Capabilities are the outcome-based business needs mapped to Federal government authoritative references, forms, inputs, outputs, and data standards.
  5. Business Use Cases are agency “stories” that document key activities, inputs, outputs, and cross-functional intersections to describe how the Federal government operates.
  6. Standard Data Elements identify the minimum business fields required to support the data inputs and outputs of the agency management operations lifecycle.
  7. @@ -338,8 +341,8 @@

    How are the Business Standards Used?

  8. - Assess Readiness for Shared Services
    - They support strategic planning to improve mission support services by giving decision makers the data needed to identify future opportunity areas for shared services. This includes identifying opportunities for modernization based on common themes, and policy reform based on agency feedback. + Assess Readiness for Modernization
    + They support strategic planning to improve mission support services by giving decision makers the data needed to identify future opportunity areas for these services. This includes identifying opportunities for modernization based on common themes, and policy reform based on agency feedback.

  9. diff --git a/_pages/m3/m3.md b/_pages/m3/m3.md index 4adfe6069..9d51c862d 100755 --- a/_pages/m3/m3.md +++ b/_pages/m3/m3.md @@ -93,18 +93,53 @@ description: The Playbook provides tools, templates, and best practices for fede
-
+

What is the M3 Playbook?

The Playbook consists of guidance and tools to help agencies plan for and navigate modernization projects. It was developed based on feedback from over 100 Government and industry experts, reflects best practices and lessons learned from prior agency and industry modernizations. It is updated annually.

Download PDF -
-

Move Your Agency Forward with M3

+
+ +
+

Move your Agency Forward with M3

+
- shutterstock image +
+
+ M3-Playbook Video Thumbnail +
M3 Playbook for Agency Modernization
+
+
+ M3 Framework Video Thumbnail +
Agency Modernization Workstreams
+
+
+ Modernization Phases Video Thumbnail +
Agency Modernization Phases
+
+
diff --git a/_sass/_m3.scss b/_sass/_m3.scss index dab3c0377..1a40d7b5c 100644 --- a/_sass/_m3.scss +++ b/_sass/_m3.scss @@ -106,6 +106,26 @@ } } +.m3-playbook-left { + width: 70%; +} + +.m3-playbook-right { + width: 30%; +} + +.m3-playbook-right iframe { + width: 100%; + height: 120px; + margin-bottom: 15px; + cursor: pointer; + transition: transform 0.3s ease-in-out; +} + +.m3-playbook-right iframe:hover { + transform: scale(1.05); +} + // @media screen and (min-width: 640px) { // .tablet\:width-1\/3 { // width: 33%; diff --git a/assets/images/m3/M3-thumbnail1.jpeg b/assets/images/m3/M3-thumbnail1.jpeg new file mode 100644 index 000000000..fef1a2b92 Binary files /dev/null and b/assets/images/m3/M3-thumbnail1.jpeg differ diff --git a/assets/images/m3/M3-thumbnail2.jpeg b/assets/images/m3/M3-thumbnail2.jpeg new file mode 100644 index 000000000..7fec4dd50 Binary files /dev/null and b/assets/images/m3/M3-thumbnail2.jpeg differ diff --git a/assets/images/m3/M3-thumbnail3.jpeg b/assets/images/m3/M3-thumbnail3.jpeg new file mode 100644 index 000000000..bd9040582 Binary files /dev/null and b/assets/images/m3/M3-thumbnail3.jpeg differ diff --git a/assets/js/m3.js b/assets/js/m3.js index 2d12dbdb5..cadca6e6e 100644 --- a/assets/js/m3.js +++ b/assets/js/m3.js @@ -43,4 +43,27 @@ document.querySelectorAll('.filterlist').forEach(function(filterlist) { } }); }); +}); + + +document.addEventListener("DOMContentLoaded", function () { + let mainVideo = document.getElementById("main-video"); + let videoTitle = document.getElementById("videoTitle"); + let videoThumbnails = document.querySelectorAll(".video-thumbnail"); + + videoThumbnails.forEach(thumbnail => { + thumbnail.addEventListener("click", function (event) { + event.preventDefault(); + let newSrc = this.getAttribute("data-video-src"); + + if (!newSrc.includes("autoplay=1")) { + newSrc = newSrc.includes("?") ? `${newSrc}&autoplay=1` : `${newSrc}?autoplay=1`; + } + mainVideo.setAttribute("src", newSrc); + let figcaption = this.parentElement.querySelector("figcaption"); + if (figcaption && videoTitle) { + videoTitle.innerHTML = figcaption.innerHTML; + } + }); + }); }); \ No newline at end of file